├── .gitignore ├── .gitmodules ├── .replit ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── error.html ├── index.js ├── index.mjs ├── package-lock.json ├── package.json ├── public ├── assets │ ├── fa │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── font │ │ ├── CONTRIBUTING.txt │ │ ├── FONTLOG.txt │ │ ├── LICENCE-FAQ.txt │ │ ├── LICENCE.txt │ │ ├── README.txt │ │ ├── TRADEMARKS.txt │ │ ├── Ubuntu-B.ttf │ │ ├── Ubuntu-BI.ttf │ │ ├── Ubuntu-C.ttf │ │ ├── Ubuntu-L.ttf │ │ ├── Ubuntu-LI.ttf │ │ ├── Ubuntu-M.ttf │ │ ├── Ubuntu-MI.ttf │ │ ├── Ubuntu-R.ttf │ │ ├── Ubuntu-RI.ttf │ │ ├── Ubuntu-Th.ttf │ │ ├── UbuntuMono-B.ttf │ │ ├── UbuntuMono-BI.ttf │ │ ├── UbuntuMono-R.ttf │ │ ├── UbuntuMono-RI.ttf │ │ └── copyright.txt │ ├── gfiles │ │ ├── flash │ │ │ ├── 1on1soccer.swf │ │ │ ├── ArkandianRevenant.swf │ │ │ ├── ElectricMan2.swf │ │ │ ├── MeatBoyEasier.swf │ │ │ ├── NGRfinal.swf │ │ │ ├── StickRPG.swf │ │ │ ├── SuperMarioFlash.swf │ │ │ ├── TacticalAssassin.swf │ │ │ ├── TankTrouble.swf │ │ │ ├── Warfare1917.swf │ │ │ ├── adrenaline.swf │ │ │ ├── age-of-war.swf │ │ │ ├── alien_hominid.swf │ │ │ ├── bindingofisaac.swf │ │ │ ├── boxhead-2-players.swf │ │ │ ├── bullet_bill.swf │ │ │ ├── causality_chrome_edition.swf │ │ │ ├── computer_bashing.swf │ │ │ ├── cubefield.swf │ │ │ ├── donkey-kong.swf │ │ │ ├── dontshootthepuppy.swf │ │ │ ├── doodledefender.swf │ │ │ ├── electric_man.swf │ │ │ ├── flashflightsimulator.swf │ │ │ ├── megaman_project_x.swf │ │ │ ├── mine_blocks.swf │ │ │ ├── mirror-edge.swf │ │ │ ├── multitask.swf │ │ │ ├── nanotube.swf │ │ │ ├── swords_and_sandals.swf │ │ │ ├── thing_thing_arena.swf │ │ │ ├── toss_the_turtle.swf │ │ │ └── ultimate_flash_sonic.swf │ │ ├── frame.html │ │ └── html5games │ │ │ ├── 2048 │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── animframe_polyfill.js │ │ │ │ ├── application.js │ │ │ │ ├── bind_polyfill.js │ │ │ │ ├── classlist_polyfill.js │ │ │ │ ├── game_manager.js │ │ │ │ ├── grid.js │ │ │ │ ├── html_actuator.js │ │ │ │ ├── keyboard_input_manager.js │ │ │ │ ├── local_storage_manager.js │ │ │ │ └── tile.js │ │ │ ├── meta │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── apple-touch-startup-image-640x1096.png │ │ │ │ └── apple-touch-startup-image-640x920.png │ │ │ └── style │ │ │ │ ├── fonts │ │ │ │ ├── ClearSans-Bold-webfont.eot │ │ │ │ ├── ClearSans-Bold-webfont.svg │ │ │ │ ├── ClearSans-Bold-webfont.woff │ │ │ │ ├── ClearSans-Light-webfont.eot │ │ │ │ ├── ClearSans-Light-webfont.svg │ │ │ │ ├── ClearSans-Light-webfont.woff │ │ │ │ ├── ClearSans-Regular-webfont.eot │ │ │ │ ├── ClearSans-Regular-webfont.svg │ │ │ │ ├── ClearSans-Regular-webfont.woff │ │ │ │ └── clear-sans.css │ │ │ │ ├── helpers.scss │ │ │ │ ├── main.css │ │ │ │ └── main.scss │ │ │ ├── astray │ │ │ ├── Box2dWeb.min.js │ │ │ ├── README.md │ │ │ ├── Three.js │ │ │ ├── ball.png │ │ │ ├── brick.png │ │ │ ├── concrete.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── keyboard.js │ │ │ └── maze.js │ │ │ ├── breaklock │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── app.css │ │ │ ├── app.js │ │ │ ├── assets │ │ │ │ ├── banner.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fonts │ │ │ │ │ ├── robotomono-light-webfont.ttf │ │ │ │ │ ├── robotomono-light-webfont.woff │ │ │ │ │ └── robotomono-light-webfont.woff2 │ │ │ │ ├── icons │ │ │ │ │ ├── icon-128x128.png │ │ │ │ │ ├── icon-144x144.png │ │ │ │ │ ├── icon-152x152.png │ │ │ │ │ ├── icon-192x192.png │ │ │ │ │ ├── icon-256x256.png │ │ │ │ │ └── ios-180x180.png │ │ │ │ ├── intro.svg │ │ │ │ ├── ios-startup │ │ │ │ │ ├── startup-1080x1920.png │ │ │ │ │ ├── startup-640x1136.png │ │ │ │ │ ├── startup-640x960.png │ │ │ │ │ └── startup-750x1334.png │ │ │ │ └── vectors │ │ │ │ │ ├── cover.svg │ │ │ │ │ └── icon.svg │ │ │ ├── index.html │ │ │ ├── lab │ │ │ │ ├── bruteCalc.js │ │ │ │ └── cover_generator.js │ │ │ ├── manifest.json │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── service-worker.js │ │ │ ├── src │ │ │ │ ├── _variables.scss │ │ │ │ ├── app.js │ │ │ │ ├── config.js │ │ │ │ ├── controllers │ │ │ │ │ ├── countdown │ │ │ │ │ │ ├── countdown.ctrl.js │ │ │ │ │ │ └── countdown.scss │ │ │ │ │ ├── extender │ │ │ │ │ │ ├── extender.ctrl.js │ │ │ │ │ │ └── extender.scss │ │ │ │ │ ├── game │ │ │ │ │ │ ├── game.ctrl.js │ │ │ │ │ │ └── game.scss │ │ │ │ │ ├── history │ │ │ │ │ │ ├── history.ctrl.js │ │ │ │ │ │ └── history.scss │ │ │ │ │ ├── lock │ │ │ │ │ │ ├── lock.ctrl.js │ │ │ │ │ │ └── lock.scss │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── menu.ctrl.js │ │ │ │ │ │ └── menu.scss │ │ │ │ │ ├── option │ │ │ │ │ │ ├── option.ctrl.js │ │ │ │ │ │ └── option.scss │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── selector │ │ │ │ │ │ ├── selector.ctrl.js │ │ │ │ │ │ └── selector.scss │ │ │ │ │ ├── statusBar │ │ │ │ │ │ ├── statusBar.ctrl.js │ │ │ │ │ │ └── statusBar.scss │ │ │ │ │ └── summary │ │ │ │ │ │ ├── summary.ctrl.js │ │ │ │ │ │ ├── summary.scss │ │ │ │ │ │ └── summaryFeedback.js │ │ │ │ ├── models │ │ │ │ │ └── pattern.js │ │ │ │ ├── style.scss │ │ │ │ └── utils │ │ │ │ │ ├── airportText.js │ │ │ │ │ ├── color.js │ │ │ │ │ ├── dom.js │ │ │ │ │ ├── leftPadNum.js │ │ │ │ │ ├── patternSVG.js │ │ │ │ │ └── polyfill.js │ │ │ └── webpack.config.js │ │ │ ├── cookies │ │ │ ├── DungeonGen.js │ │ │ ├── README.md │ │ │ ├── ajax.js │ │ │ ├── base64.js │ │ │ ├── dungeons.js │ │ │ ├── img │ │ │ │ ├── BGgarden.jpg │ │ │ │ ├── alchemylab.png │ │ │ │ ├── alchemylabBackground.png │ │ │ │ ├── alchemylabIcon.png │ │ │ │ ├── alteredGrandma.png │ │ │ │ ├── antiGrandma.png │ │ │ │ ├── antimattercondenser.png │ │ │ │ ├── antimattercondenserBackground.png │ │ │ │ ├── antimattercondenserIcon.png │ │ │ │ ├── ascendBox.png │ │ │ │ ├── ascendInfo.png │ │ │ │ ├── ascendSlot.png │ │ │ │ ├── ascendWisp.png │ │ │ │ ├── ascendedBakingPod.png │ │ │ │ ├── bank.png │ │ │ │ ├── bankBackground.png │ │ │ │ ├── bankGrandma.png │ │ │ │ ├── bgBlack.jpg │ │ │ │ ├── bgBlue.jpg │ │ │ │ ├── bgGold.jpg │ │ │ │ ├── bgMoney.jpg │ │ │ │ ├── bgMoneyChart.jpg │ │ │ │ ├── bgRed.jpg │ │ │ │ ├── bgWhite.jpg │ │ │ │ ├── blackGradient.png │ │ │ │ ├── blackGradientLeft.png │ │ │ │ ├── blackGradientSmallTop.png │ │ │ │ ├── bracketPanelLeftS.png │ │ │ │ ├── bracketPanelRightS.png │ │ │ │ ├── brokenCookie.png │ │ │ │ ├── brokenCookieHalo.png │ │ │ │ ├── buildings.png │ │ │ │ ├── bunnies.png │ │ │ │ ├── bunnyGrandma.png │ │ │ │ ├── buttonTile.jpg │ │ │ │ ├── caramelWave.png │ │ │ │ ├── chancemaker.png │ │ │ │ ├── chancemakerBackground.png │ │ │ │ ├── chocolateMilkWave.png │ │ │ │ ├── clayBG.jpg │ │ │ │ ├── contract.png │ │ │ │ ├── control.png │ │ │ │ ├── cookieShower1.png │ │ │ │ ├── cookieShower2.png │ │ │ │ ├── cookieShower3.png │ │ │ │ ├── cosmicGrandma.png │ │ │ │ ├── cursor.png │ │ │ │ ├── cursoricon.png │ │ │ │ ├── darkNoise.jpg │ │ │ │ ├── darkNoise.png │ │ │ │ ├── darkNoiseTopBar.jpg │ │ │ │ ├── dragon.png │ │ │ │ ├── dragonBG.png │ │ │ │ ├── dragonFrame.png │ │ │ │ ├── dungeonFactory.png │ │ │ │ ├── dungeonIcons.png │ │ │ │ ├── dungeonOverlay.png │ │ │ │ ├── dungeonTiles.png │ │ │ │ ├── easterEggs.png │ │ │ │ ├── elfGrandma.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyFrame.png │ │ │ │ ├── factory.png │ │ │ │ ├── factoryBackground.png │ │ │ │ ├── factoryIcon.png │ │ │ │ ├── farm.png │ │ │ │ ├── farmBackground.png │ │ │ │ ├── farmIcon.png │ │ │ │ ├── farmerGrandma.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── featherLeft.png │ │ │ │ ├── featherRight.png │ │ │ │ ├── filler.png │ │ │ │ ├── fractalEngine.png │ │ │ │ ├── fractalEngineBackground.png │ │ │ │ ├── frameBorder.png │ │ │ │ ├── frostedReindeer.png │ │ │ │ ├── gardenPlants.png │ │ │ │ ├── gardenPlots.png │ │ │ │ ├── gardenTip.png │ │ │ │ ├── girlscoutChip.png │ │ │ │ ├── girlscoutCrumb.png │ │ │ │ ├── girlscoutDoe.png │ │ │ │ ├── girlscoutLucky.png │ │ │ │ ├── glint.jpg │ │ │ │ ├── goldCookie.png │ │ │ │ ├── grandma.png │ │ │ │ ├── grandmaBackground.png │ │ │ │ ├── grandmaIcon.png │ │ │ │ ├── grandmas1.jpg │ │ │ │ ├── grandmas2.jpg │ │ │ │ ├── grandmas3.jpg │ │ │ │ ├── grandmasGrandma.png │ │ │ │ ├── grimoireBG.png │ │ │ │ ├── heartStorm.png │ │ │ │ ├── hearts.png │ │ │ │ ├── heavenRing1.jpg │ │ │ │ ├── heavenRing2.jpg │ │ │ │ ├── heavenlyMoney.png │ │ │ │ ├── icons.png │ │ │ │ ├── imperfectCookie.png │ │ │ │ ├── infoBG.png │ │ │ │ ├── infoBGfade.png │ │ │ │ ├── levelUp.png │ │ │ │ ├── linkPulse.gif │ │ │ │ ├── linkPulse.png │ │ │ │ ├── luckyGrandma.png │ │ │ │ ├── mapBG.jpg │ │ │ │ ├── mapIcons.png │ │ │ │ ├── mapTiles.png │ │ │ │ ├── marbleBG.jpg │ │ │ │ ├── marshmallows.png │ │ │ │ ├── metaGrandma.png │ │ │ │ ├── milk.png │ │ │ │ ├── milkBanana.png │ │ │ │ ├── milkBlack.png │ │ │ │ ├── milkBlood.png │ │ │ │ ├── milkBlueFire.png │ │ │ │ ├── milkBlueberry.png │ │ │ │ ├── milkCaramel.png │ │ │ │ ├── milkChocolate.png │ │ │ │ ├── milkFire.png │ │ │ │ ├── milkGold.png │ │ │ │ ├── milkGreenFire.png │ │ │ │ ├── milkHoney.png │ │ │ │ ├── milkLime.png │ │ │ │ ├── milkOrange.png │ │ │ │ ├── milkPlain.png │ │ │ │ ├── milkRaspberry.png │ │ │ │ ├── milkStars.png │ │ │ │ ├── milkStrawberry.png │ │ │ │ ├── milkVanilla.png │ │ │ │ ├── milkWave.png │ │ │ │ ├── milkZebra.png │ │ │ │ ├── mine.png │ │ │ │ ├── mineBackground.png │ │ │ │ ├── mineIcon.png │ │ │ │ ├── minerGrandma.png │ │ │ │ ├── money.png │ │ │ │ ├── mysteriousHero.png │ │ │ │ ├── mysteriousOpponent.png │ │ │ │ ├── mysticBG.jpg │ │ │ │ ├── nest.png │ │ │ │ ├── orangeWave.png │ │ │ │ ├── panelBG.png │ │ │ │ ├── panelGradientBottom.png │ │ │ │ ├── panelGradientLeft.png │ │ │ │ ├── panelGradientRight.png │ │ │ │ ├── panelGradientTop.png │ │ │ │ ├── panelHorizontal.png │ │ │ │ ├── panelMenu.png │ │ │ │ ├── panelMenu2.png │ │ │ │ ├── panelMenu3.png │ │ │ │ ├── panelVertical.png │ │ │ │ ├── pantheonBG.png │ │ │ │ ├── perfectCookie.png │ │ │ │ ├── pieFill.png │ │ │ │ ├── portal.png │ │ │ │ ├── portalBackground.png │ │ │ │ ├── portalIcon.png │ │ │ │ ├── portraitChip.png │ │ │ │ ├── portraitCrumb.png │ │ │ │ ├── portraitDoe.png │ │ │ │ ├── portraitLucky.png │ │ │ │ ├── prestigeBar.jpg │ │ │ │ ├── prestigeBarCap.png │ │ │ │ ├── prism.png │ │ │ │ ├── prismBackground.png │ │ │ │ ├── rainbowGrandma.png │ │ │ │ ├── raspberryWave.png │ │ │ │ ├── roundFrameBorder.png │ │ │ │ ├── roundedPanelBG.png │ │ │ │ ├── roundedPanelBGS.png │ │ │ │ ├── roundedPanelLeft.png │ │ │ │ ├── roundedPanelLeftS.png │ │ │ │ ├── roundedPanelRight.png │ │ │ │ ├── roundedPanelRightS.png │ │ │ │ ├── santa.png │ │ │ │ ├── sentientFurnace.png │ │ │ │ ├── shadedBorders.png │ │ │ │ ├── shadedBordersGold.png │ │ │ │ ├── shadedBordersRed.png │ │ │ │ ├── shadedBordersSoft.png │ │ │ │ ├── shine.png │ │ │ │ ├── shineGold.png │ │ │ │ ├── shineRed.png │ │ │ │ ├── shineSpoke.png │ │ │ │ ├── shinyWrinkler.png │ │ │ │ ├── shinyWrinklerBits.png │ │ │ │ ├── shipment.png │ │ │ │ ├── shipmentBackground.png │ │ │ │ ├── shipmentIcon.png │ │ │ │ ├── smallCookies.png │ │ │ │ ├── smallDollars.png │ │ │ │ ├── snow.jpg │ │ │ │ ├── snow2.jpg │ │ │ │ ├── sparkles.jpg │ │ │ │ ├── spellBG.png │ │ │ │ ├── spinnyBig.png │ │ │ │ ├── spinnySmall.png │ │ │ │ ├── spookyCookie.png │ │ │ │ ├── starbg.jpg │ │ │ │ ├── storeTile.jpg │ │ │ │ ├── sugarLump.png │ │ │ │ ├── temple.png │ │ │ │ ├── templeBackground.png │ │ │ │ ├── templeGrandma.png │ │ │ │ ├── timemachine.png │ │ │ │ ├── timemachineBackground.png │ │ │ │ ├── timemachineIcon.png │ │ │ │ ├── timerBars.png │ │ │ │ ├── transmutedGrandma.png │ │ │ │ ├── upgradeFrame.png │ │ │ │ ├── upgradeFrameHeavenly.png │ │ │ │ ├── upgradeFrameOld.png │ │ │ │ ├── upgradeFrameShadowOld.png │ │ │ │ ├── upgradeHighlight.jpg │ │ │ │ ├── upgradeHighlight.png │ │ │ │ ├── upgradeSelector.png │ │ │ │ ├── weeHoodie.png │ │ │ │ ├── winterFrame.png │ │ │ │ ├── winterWrinkler.png │ │ │ │ ├── witchGrandma.png │ │ │ │ ├── wizardtower.png │ │ │ │ ├── wizardtowerBackground.png │ │ │ │ ├── workerGrandma.png │ │ │ │ ├── wrathContract.png │ │ │ │ ├── wrathCookie.png │ │ │ │ ├── wrinkler.png │ │ │ │ ├── wrinklerBits.png │ │ │ │ └── wrinklerBitsOld.png │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── minigameGarden.js │ │ │ ├── minigameGrimoire.js │ │ │ ├── minigamePantheon.js │ │ │ ├── showads.js │ │ │ ├── snd │ │ │ │ ├── buy1.mp3 │ │ │ │ ├── buy2.mp3 │ │ │ │ ├── buy3.mp3 │ │ │ │ ├── buy4.mp3 │ │ │ │ ├── buyHeavenly.mp3 │ │ │ │ ├── charging.mp3 │ │ │ │ ├── chime.mp3 │ │ │ │ ├── choir.mp3 │ │ │ │ ├── click1.mp3 │ │ │ │ ├── click2.mp3 │ │ │ │ ├── click3.mp3 │ │ │ │ ├── click4.mp3 │ │ │ │ ├── click5.mp3 │ │ │ │ ├── click6.mp3 │ │ │ │ ├── click7.mp3 │ │ │ │ ├── clickOff.mp3 │ │ │ │ ├── clickOn.mp3 │ │ │ │ ├── clickb1.mp3 │ │ │ │ ├── clickb2.mp3 │ │ │ │ ├── clickb3.mp3 │ │ │ │ ├── clickb4.mp3 │ │ │ │ ├── clickb5.mp3 │ │ │ │ ├── clickb6.mp3 │ │ │ │ ├── clickb7.mp3 │ │ │ │ ├── cookieBreak.mp3 │ │ │ │ ├── cymbalCrash.mp3 │ │ │ │ ├── cymbalRev.mp3 │ │ │ │ ├── jingle.mp3 │ │ │ │ ├── jingleClick.mp3 │ │ │ │ ├── levelPrestige.mp3 │ │ │ │ ├── page.mp3 │ │ │ │ ├── pop1.mp3 │ │ │ │ ├── pop2.mp3 │ │ │ │ ├── pop3.mp3 │ │ │ │ ├── press.mp3 │ │ │ │ ├── sell1.mp3 │ │ │ │ ├── sell2.mp3 │ │ │ │ ├── sell3.mp3 │ │ │ │ ├── sell4.mp3 │ │ │ │ ├── shimmerClick.mp3 │ │ │ │ ├── smallCymbalCrash.mp3 │ │ │ │ ├── smallTick.mp3 │ │ │ │ ├── spell.mp3 │ │ │ │ ├── spellFail.mp3 │ │ │ │ ├── spirit.mp3 │ │ │ │ ├── squish1.mp3 │ │ │ │ ├── squish2.mp3 │ │ │ │ ├── squish3.mp3 │ │ │ │ ├── squish4.mp3 │ │ │ │ ├── switch.mp3 │ │ │ │ ├── swooshIn.mp3 │ │ │ │ ├── swooshOut.mp3 │ │ │ │ ├── thud.mp3 │ │ │ │ ├── tick.mp3 │ │ │ │ └── upgrade.mp3 │ │ │ └── style.css │ │ │ ├── flappybird │ │ │ ├── 404993.json │ │ │ ├── __game-scripts.js │ │ │ ├── __loading__.js │ │ │ ├── __start__.js │ │ │ ├── config.json │ │ │ ├── files │ │ │ │ └── assets │ │ │ │ │ ├── 3324896 │ │ │ │ │ └── 1 │ │ │ │ │ │ └── spritesheet.png │ │ │ │ │ ├── 3371285 │ │ │ │ │ └── 1 │ │ │ │ │ │ └── sfx_hit.mp3 │ │ │ │ │ ├── 3371286 │ │ │ │ │ └── 1 │ │ │ │ │ │ └── sfx_wing.mp3 │ │ │ │ │ ├── 3371287 │ │ │ │ │ └── 1 │ │ │ │ │ │ └── sfx_die.mp3 │ │ │ │ │ ├── 3371288 │ │ │ │ │ └── 1 │ │ │ │ │ │ └── sfx_point.mp3 │ │ │ │ │ └── 3371289 │ │ │ │ │ └── 1 │ │ │ │ │ └── sfx_swooshing.mp3 │ │ │ ├── index.html │ │ │ ├── logo.png │ │ │ ├── manifest.json │ │ │ ├── playcanvas-stable.min.js │ │ │ └── styles.css │ │ │ ├── hextris │ │ │ ├── CNAME │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── a.js │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ ├── android.png │ │ │ │ ├── appstore.svg │ │ │ │ ├── btn_back.svg │ │ │ │ ├── btn_facebook.svg │ │ │ │ ├── btn_help.svg │ │ │ │ ├── btn_pause.svg │ │ │ │ ├── btn_restart.svg │ │ │ │ ├── btn_resume.svg │ │ │ │ ├── btn_share.svg │ │ │ │ ├── btn_twitter.svg │ │ │ │ ├── facebook-opengraph.png │ │ │ │ ├── icon_arrows.svg │ │ │ │ └── twitter-opengraph.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── Block.js │ │ │ │ ├── Hex.js │ │ │ │ ├── Text.js │ │ │ │ ├── checking.js │ │ │ │ ├── comboTimer.js │ │ │ │ ├── initialization.js │ │ │ │ ├── input.js │ │ │ │ ├── main.js │ │ │ │ ├── math.js │ │ │ │ ├── render.js │ │ │ │ ├── save-state.js │ │ │ │ ├── update.js │ │ │ │ ├── view.js │ │ │ │ └── wavegen.js │ │ │ ├── style │ │ │ │ ├── fa │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── fonts │ │ │ │ │ ├── Exo2-ExtraLight.otf │ │ │ │ │ ├── Exo2-Regular.otf │ │ │ │ │ ├── Exo2-SemiBold.otf │ │ │ │ │ ├── Lovelo.otf │ │ │ │ │ ├── QuattrocentoSans-Regular.ttf │ │ │ │ │ └── roboto.woff │ │ │ │ ├── rrssb.css │ │ │ │ └── style.css │ │ │ └── vendor │ │ │ │ ├── hammer.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── js.cookie.js │ │ │ │ ├── jsonfn.min.js │ │ │ │ ├── keypress.min.js │ │ │ │ ├── rrssb.min.js │ │ │ │ └── sweet-alert.min.js │ │ │ ├── nerd.html │ │ │ ├── pacman │ │ │ ├── .gitignore │ │ │ ├── .htaccess │ │ │ ├── README.md │ │ │ ├── cache.manifest │ │ │ ├── data │ │ │ │ ├── db-handler.php │ │ │ │ └── map.json │ │ │ ├── fonts │ │ │ │ ├── PressStart2Play.eot │ │ │ │ ├── PressStart2Play.ttf │ │ │ │ └── PressStart2Play.woff │ │ │ ├── googlee6aee5a894225e60.html │ │ │ ├── img │ │ │ │ ├── Icon-106x106.png │ │ │ │ ├── Icon-130x130.png │ │ │ │ ├── Icon-150x130.png │ │ │ │ ├── Icon-200x200.png │ │ │ │ ├── Icon-300x300.png │ │ │ │ ├── Icon-32x32.png │ │ │ │ ├── Icon-512x512.png │ │ │ │ ├── Pacman-Icon.svg │ │ │ │ ├── audio-icon-mute.png │ │ │ │ ├── audio-icon.png │ │ │ │ ├── bg-pattern-black.png │ │ │ │ ├── blinky.svg │ │ │ │ ├── clyde.svg │ │ │ │ ├── dazzled.svg │ │ │ │ ├── dazzled2.svg │ │ │ │ ├── dead.svg │ │ │ │ ├── heart.png │ │ │ │ ├── icon-128.png │ │ │ │ ├── icon-128_old.png │ │ │ │ ├── inky.svg │ │ │ │ ├── instructions │ │ │ │ │ ├── instructions_chase.PNG │ │ │ │ │ ├── instructions_powerpill.PNG │ │ │ │ │ └── instructions_scatter.PNG │ │ │ │ ├── pinky.svg │ │ │ │ └── platzh1rsch-logo.png │ │ │ ├── index.htm │ │ │ ├── js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery.hammer.min.js │ │ │ │ ├── pacman │ │ │ │ │ ├── ghost.js │ │ │ │ │ └── pacman.js │ │ │ │ └── virtualjoystick.js │ │ │ ├── manifest.json │ │ │ ├── mp3 │ │ │ │ ├── die.mp3 │ │ │ │ ├── eatghost.mp3 │ │ │ │ ├── powerpill.mp3 │ │ │ │ ├── theme.mp3 │ │ │ │ └── waka.mp3 │ │ │ ├── pacman-canvas.css │ │ │ ├── pacman-canvas.js │ │ │ ├── pacman-canvas.webapp │ │ │ ├── style.css │ │ │ ├── wav │ │ │ │ ├── die.wav │ │ │ │ ├── eatghost.wav │ │ │ │ ├── powerpill.wav │ │ │ │ ├── theme.wav │ │ │ │ └── waka.wav │ │ │ └── web-app-manifest.json │ │ │ ├── radius-raid │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── audio.js │ │ │ │ ├── bullet.js │ │ │ │ ├── button.js │ │ │ │ ├── definitions.js │ │ │ │ ├── enemy.js │ │ │ │ ├── explosion.js │ │ │ │ ├── game.js │ │ │ │ ├── hero.js │ │ │ │ ├── jsfxr.js │ │ │ │ ├── levelpop.js │ │ │ │ ├── particle.js │ │ │ │ ├── particleemitter.js │ │ │ │ ├── powerup.js │ │ │ │ ├── storage.js │ │ │ │ ├── text.js │ │ │ │ ├── textpop.js │ │ │ │ └── util.js │ │ │ ├── min.html │ │ │ └── min.zip │ │ │ ├── spaceinvaders │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── skulls.png │ │ │ │ │ └── style.css │ │ │ │ ├── img │ │ │ │ │ ├── bullet.png │ │ │ │ │ ├── enemy-bullet.png │ │ │ │ │ ├── explode.png │ │ │ │ │ ├── invader.png │ │ │ │ │ ├── invader32x32x4.png │ │ │ │ │ ├── player.png │ │ │ │ │ └── starfield.png │ │ │ │ └── javascript │ │ │ │ │ ├── built.js │ │ │ │ │ ├── built │ │ │ │ │ └── main-built.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── phaser-no-physics.min.js │ │ │ │ │ └── require.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── module │ │ │ │ │ ├── Aliens.js │ │ │ │ │ ├── Background.js │ │ │ │ │ ├── Bullets.js │ │ │ │ │ ├── Explosions.js │ │ │ │ │ ├── HUD.js │ │ │ │ │ ├── Level.js │ │ │ │ │ └── Player.js │ │ │ │ │ └── state │ │ │ │ │ ├── End.js │ │ │ │ │ ├── Load.js │ │ │ │ │ ├── Play.js │ │ │ │ │ └── Start.js │ │ │ ├── index.html │ │ │ └── indexOpt.html │ │ │ └── towermaster │ │ │ ├── .babelrc │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README.zh-CN.md │ │ │ ├── assets │ │ │ ├── background.png │ │ │ ├── bgm.mp3 │ │ │ ├── bgm.ogg │ │ │ ├── block-perfect.png │ │ │ ├── block-rope.png │ │ │ ├── block.png │ │ │ ├── c1.png │ │ │ ├── c2.png │ │ │ ├── c3.png │ │ │ ├── c4.png │ │ │ ├── c5.png │ │ │ ├── c6.png │ │ │ ├── c7.png │ │ │ ├── c8.png │ │ │ ├── drop-perfect.mp3 │ │ │ ├── drop-perfect.ogg │ │ │ ├── drop.mp3 │ │ │ ├── drop.ogg │ │ │ ├── f1.png │ │ │ ├── f2.png │ │ │ ├── f3.png │ │ │ ├── f4.png │ │ │ ├── f5.png │ │ │ ├── f6.png │ │ │ ├── f7.png │ │ │ ├── game-over.mp3 │ │ │ ├── game-over.ogg │ │ │ ├── heart.png │ │ │ ├── hook.png │ │ │ ├── main-bg.png │ │ │ ├── main-index-logo.png │ │ │ ├── main-index-start.png │ │ │ ├── main-index-title.png │ │ │ ├── main-loading-logo.png │ │ │ ├── main-loading.gif │ │ │ ├── main-modal-again-b.png │ │ │ ├── main-modal-bg.png │ │ │ ├── main-modal-invite-b.png │ │ │ ├── main-modal-over.png │ │ │ ├── main-share-icon.png │ │ │ ├── rope.png │ │ │ ├── rotate.mp3 │ │ │ ├── rotate.ogg │ │ │ ├── score.png │ │ │ ├── tutorial-arrow.png │ │ │ ├── tutorial.png │ │ │ ├── wenxue.eot │ │ │ ├── wenxue.svg │ │ │ ├── wenxue.ttf │ │ │ ├── wenxue.woff │ │ │ └── zepto-1.1.6.min.js │ │ │ ├── dist │ │ │ └── main.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── animateFuncs.js │ │ │ ├── background.js │ │ │ ├── block.js │ │ │ ├── cloud.js │ │ │ ├── constant.js │ │ │ ├── flight.js │ │ │ ├── hook.js │ │ │ ├── index.js │ │ │ ├── line.js │ │ │ ├── tutorial.js │ │ │ └── utils.js │ ├── legal.txt │ ├── main.css │ ├── main.js │ └── ruffle │ │ ├── 664f962a4ce56c14c040.wasm │ │ ├── LICENSE_APACHE │ │ ├── LICENSE_MIT │ │ ├── README.md │ │ ├── core.ruffle.94dcf0873255a416cd0f.js │ │ ├── core.ruffle.94dcf0873255a416cd0f.js.map │ │ ├── core.ruffle.f471027de2e6013390a7.js │ │ ├── core.ruffle.f471027de2e6013390a7.js.map │ │ ├── de0a361a98a2a9d6b6d7.wasm │ │ ├── package.json │ │ ├── ruffle.js │ │ └── ruffle.js.map ├── index.html └── media.html ├── replit.svg └── vanadium.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "static"] 2 | path = static 3 | url = https://github.com/titaniumnetwork-dev/ultraviolet-site.git 4 | -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- 1 | language = "nodejs" 2 | run = "./main.sh" 3 | onBoot = "chmod u+x main.sh" 4 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vanadium", 3 | "description": "High quality Web-Proxy based around the Corrosion proxy framework.", 4 | "repository": "https://github.com/titaniumnetwork-dev/Vanadium", 5 | "logo": "https://avatars.githubusercontent.com/u/47227492?s=200&v=4", 6 | "keywords": ["corrosion", "proxy", "web-unblocker", "internet", "gaming", "unblock", "vanadium"] 7 | } 8 | -------------------------------------------------------------------------------- /error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Error Page 7 | 8 | 9 |

An error has occured.

10 | 11 | 12 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | (async() => { 2 | await import('./index.mjs'); 3 | })(); 4 | -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- 1 | import Server from 'bare-server-node'; 2 | import http from 'http'; 3 | import nodeStatic from 'node-static'; 4 | 5 | 6 | const bare = new Server('/bare/', ''); 7 | const serve = new nodeStatic.Server('public/'); 8 | 9 | const server = http.createServer(); 10 | 11 | server.on('request', (request, response) => { 12 | if (bare.route_request(request, response)) return true; 13 | serve.serve(request, response); 14 | }); 15 | 16 | server.on('upgrade', (req, socket, head) => { 17 | if(bare.route_upgrade(req, socket, head))return; 18 | socket.end(); 19 | }); 20 | server.listen(process.env.PORT || 8080, () => {console.log("Vanadium running at http://localhost:8080")}); 21 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "bare-server-node": "github:tomphttp/bare-server-node", 4 | "node-static": "^0.7.11" 5 | }, 6 | "name": "uv-app", 7 | "version": "1.0.0", 8 | "description": "Ultraviolet instance", 9 | "main": "index.js", 10 | "scripts": { 11 | "test": "echo \"Error: no test specified\" && exit 1", 12 | "start": "node ." 13 | }, 14 | "keywords": [ 15 | "proxy" 16 | ], 17 | "author": "", 18 | "license": "GPL-3.0-or-later" 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/fa/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /public/assets/fa/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/fa/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/fa/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/fa/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/fa/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/fa/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/fa/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/fa/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/fa/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/fa/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/fa/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/assets/fa/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /public/assets/fa/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/fa/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/fa/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /public/assets/fa/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/assets/fa/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/fa/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/fa/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /public/assets/fa/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /public/assets/fa/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /public/assets/fa/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/assets/fa/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /public/assets/font/CONTRIBUTING.txt: -------------------------------------------------------------------------------- 1 | The Ubuntu Font Family is very long-term endeavour, and the first time 2 | that a professionally-designed font has been funded specifically with 3 | the intent of being an on-going community expanded project: 4 | 5 | http://font.ubuntu.com/ 6 | 7 | Development of the Ubuntu Font Family is undertaken on Launchpad: 8 | 9 | http://launchpad.net/ubuntu-font-family/ 10 | 11 | and this is where milestones, bug management and releases are handled. 12 | 13 | Contributions are welcomed. Your work will be used on millions of 14 | computers every single day! Following the initial bootstrapping of 15 | Latin, Cyrillic, Greek, Arabic and Hebrew expansion will be undertaken 16 | by font designers from the font design and Ubuntu communities. 17 | 18 | To ensure that the Ubuntu Font Family can be re-licensed to future 19 | widely-used libre font licences, copyright assignment is being required: 20 | 21 | https://launchpad.net/~uff-contributors 22 | -------------------------------------------------------------------------------- /public/assets/font/README.txt: -------------------------------------------------------------------------------- 1 | ---------------------- 2 | Ubuntu Font Family 3 | ====================== 4 | 5 | The Ubuntu Font Family are a set of matching new libre/open fonts in 6 | development during 2010--2011. And with further expansion work and 7 | bug fixing during 2015. The development is being funded by 8 | Canonical Ltd on behalf the wider Free Software community and the 9 | Ubuntu project. The technical font design work and implementation is 10 | being undertaken by Dalton Maag. 11 | 12 | Both the final font Truetype/OpenType files and the design files used 13 | to produce the font family are distributed under an open licence and 14 | you are expressly encouraged to experiment, modify, share and improve. 15 | 16 | http://font.ubuntu.com/ 17 | -------------------------------------------------------------------------------- /public/assets/font/TRADEMARKS.txt: -------------------------------------------------------------------------------- 1 | Ubuntu and Canonical are registered trademarks of Canonical Ltd. 2 | 3 | The licence accompanying these works does not grant any rights 4 | under trademark law and all such rights are reserved. 5 | -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-B.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-BI.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-C.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-C.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-L.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-L.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-LI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-LI.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-M.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-M.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-MI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-MI.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-R.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-RI.ttf -------------------------------------------------------------------------------- /public/assets/font/Ubuntu-Th.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/Ubuntu-Th.ttf -------------------------------------------------------------------------------- /public/assets/font/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /public/assets/font/UbuntuMono-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/UbuntuMono-BI.ttf -------------------------------------------------------------------------------- /public/assets/font/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /public/assets/font/UbuntuMono-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/font/UbuntuMono-RI.ttf -------------------------------------------------------------------------------- /public/assets/font/copyright.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010,2011 Canonical Ltd. 2 | 3 | This Font Software is licensed under the Ubuntu Font Licence, Version 4 | 1.0. https://launchpad.net/ubuntu-font-licence 5 | 6 | -------------------------------------------------------------------------------- /public/assets/gfiles/flash/1on1soccer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/1on1soccer.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/ArkandianRevenant.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/ArkandianRevenant.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/ElectricMan2.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/ElectricMan2.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/MeatBoyEasier.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/MeatBoyEasier.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/NGRfinal.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/NGRfinal.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/StickRPG.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/StickRPG.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/SuperMarioFlash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/SuperMarioFlash.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/TacticalAssassin.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/TacticalAssassin.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/TankTrouble.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/TankTrouble.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/Warfare1917.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/Warfare1917.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/adrenaline.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/adrenaline.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/age-of-war.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/age-of-war.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/alien_hominid.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/alien_hominid.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/bindingofisaac.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/bindingofisaac.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/boxhead-2-players.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/boxhead-2-players.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/bullet_bill.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/bullet_bill.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/causality_chrome_edition.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/causality_chrome_edition.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/computer_bashing.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/computer_bashing.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/cubefield.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/cubefield.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/donkey-kong.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/donkey-kong.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/dontshootthepuppy.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/dontshootthepuppy.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/doodledefender.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/doodledefender.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/electric_man.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/electric_man.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/flashflightsimulator.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/flashflightsimulator.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/megaman_project_x.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/megaman_project_x.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/mine_blocks.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/mine_blocks.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/mirror-edge.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/mirror-edge.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/multitask.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/multitask.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/nanotube.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/nanotube.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/swords_and_sandals.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/swords_and_sandals.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/thing_thing_arena.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/thing_thing_arena.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/toss_the_turtle.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/toss_the_turtle.swf -------------------------------------------------------------------------------- /public/assets/gfiles/flash/ultimate_flash_sonic.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/flash/ultimate_flash_sonic.swf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esnext": true, 3 | "indent": 2, 4 | "maxlen": 80, 5 | "freeze": true, 6 | "camelcase": true, 7 | "unused": true, 8 | "eqnull": true, 9 | "proto": true, 10 | "supernew": true, 11 | "noyield": true, 12 | "evil": true, 13 | "node": true, 14 | "boss": true, 15 | "expr": true, 16 | "loopfunc": true, 17 | "white": true, 18 | "maxdepth": 4 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/Rakefile: -------------------------------------------------------------------------------- 1 | require "date" 2 | 3 | namespace :appcache do 4 | desc "update the date in the appcache file (in the gh-pages branch)" 5 | task :update do 6 | appcache = File.read("cache.appcache") 7 | updated = "# Updated: #{DateTime.now}" 8 | 9 | File.write("cache.appcache", appcache.sub(/^# Updated:.*$/, updated)) 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/favicon.ico -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/js/application.js: -------------------------------------------------------------------------------- 1 | // Wait till the browser is ready to render the game (avoids glitches) 2 | window.requestAnimationFrame(function () { 3 | new GameManager(4, KeyboardInputManager, HTMLActuator, LocalStorageManager); 4 | }); 5 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/js/bind_polyfill.js: -------------------------------------------------------------------------------- 1 | Function.prototype.bind = Function.prototype.bind || function (target) { 2 | var self = this; 3 | return function (args) { 4 | if (!(args instanceof Array)) { 5 | args = [args]; 6 | } 7 | self.apply(target, args); 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/js/tile.js: -------------------------------------------------------------------------------- 1 | function Tile(position, value) { 2 | this.x = position.x; 3 | this.y = position.y; 4 | this.value = value || 2; 5 | 6 | this.previousPosition = null; 7 | this.mergedFrom = null; // Tracks tiles that merged together 8 | } 9 | 10 | Tile.prototype.savePosition = function () { 11 | this.previousPosition = { x: this.x, y: this.y }; 12 | }; 13 | 14 | Tile.prototype.updatePosition = function (position) { 15 | this.x = position.x; 16 | this.y = position.y; 17 | }; 18 | 19 | Tile.prototype.serialize = function () { 20 | return { 21 | position: { 22 | x: this.x, 23 | y: this.y 24 | }, 25 | value: this.value 26 | }; 27 | }; 28 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/meta/apple-touch-startup-image-640x1096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/meta/apple-touch-startup-image-640x1096.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/meta/apple-touch-startup-image-640x920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/meta/apple-touch-startup-image-640x920.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Bold-webfont.eot -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Bold-webfont.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Light-webfont.eot -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Light-webfont.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Regular-webfont.eot -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/2048/style/fonts/ClearSans-Regular-webfont.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/astray/README.md: -------------------------------------------------------------------------------- 1 | # Astray 2 | 3 | A WebGL maze game built with Three.js and Box2dWeb. Play it here: http://wwwtyro.github.com/Astray/ 4 | 5 | ### Launching 6 | 7 | There are several ways to launch the game. Here is the simplest: 8 | 9 | 1. Clone or download the repository 10 | 2. Navigate to Astray's directory 11 | 3. Start 'python -m SimpleHTTPServer' in your shell (for python 3.0 and above type 'python -m http.server' in your shell) 12 | 4. Open 'localhost:8000' in your browser 13 | 5. Enjoy! 14 | 15 | ### License 16 | 17 | I don't believe in them. You can order your bits however you please. 18 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/astray/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/astray/ball.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/astray/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/astray/brick.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/astray/concrete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/astray/concrete.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/banner.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/favicon.ico -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/fonts/robotomono-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/fonts/robotomono-light-webfont.ttf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/fonts/robotomono-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/fonts/robotomono-light-webfont.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/fonts/robotomono-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/fonts/robotomono-light-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/icons/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/icons/icon-256x256.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/icons/ios-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/icons/ios-180x180.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-1080x1920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-1080x1920.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-640x1136.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-640x960.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/breaklock/assets/ios-startup/startup-750x1334.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BreakLock", 3 | "short_name": "BreakLock", 4 | "icons": [{ 5 | "src": "./assets/icons/icon-128x128.png", 6 | "sizes": "128x128", 7 | "type": "image/png" 8 | }, { 9 | "src": "./assets/icons/icon-144x144.png", 10 | "sizes": "144x144", 11 | "type": "image/png" 12 | }, { 13 | "src": "./assets/icons/icon-152x152.png", 14 | "sizes": "152x152", 15 | "type": "image/png" 16 | }, { 17 | "src": "./assets/icons/icon-192x192.png", 18 | "sizes": "192x192", 19 | "type": "image/png" 20 | }, { 21 | "src": "./assets/icons/icon-256x256.png", 22 | "sizes": "256x256", 23 | "type": "image/png" 24 | }], 25 | "start_url": "./", 26 | "display": "standalone", 27 | "orientation": "portrait", 28 | "background_color": "#14171b", 29 | "theme_color": "#14171b" 30 | } 31 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "breaklock", 3 | "version": "0.1.0", 4 | "description": "Small PWA game to guess pattern locks", 5 | "main": "scripts/app.js", 6 | "scripts": { 7 | "build": "./node_modules/webpack/bin/webpack.js --optimize-minimize" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/maxwellito/breaklock.git" 12 | }, 13 | "author": "maxwellito", 14 | "license": "MIT", 15 | "bugs": { 16 | "url": "https://github.com/maxwellito/breaklock/issues" 17 | }, 18 | "homepage": "https://github.com/maxwellito/breaklock", 19 | "devDependencies": { 20 | "babel-core": "^6.24.0", 21 | "babel-loader": "^6.4.1", 22 | "babel-preset-es2015": "^6.24.0", 23 | "css-loader": "^0.28.0", 24 | "extract-text-webpack-plugin": "^2.1.0", 25 | "node-sass": "^4.5.2", 26 | "raw-loader": "^0.5.1", 27 | "sass-loader": "^6.0.3", 28 | "style-loader": "^0.16.1", 29 | "webpack": "^2.3.3" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/_variables.scss: -------------------------------------------------------------------------------- 1 | $theme_dark: #14171b; 2 | $theme_bright: #ffffff; 3 | $theme_success: #116699; 4 | $theme_error: #ff0000; 5 | 6 | 7 | $gutter: 2rem; 8 | $border: 1px dotted $theme_bright; 9 | $font_weight: 300; 10 | 11 | 12 | // Media queries sizes 13 | $mq-small-min: 0px; 14 | $mq-medium-min: 480px; 15 | $mq-large-min: 768px; 16 | $mq-xlarge-min: 1024px; 17 | $mq-xxlarge-min: 1600px; 18 | 19 | $mq-small-max: $mq-medium-min - 1px; 20 | $mq-medium-max: $mq-large-min - 1px; 21 | $mq-large-max: $mq-xlarge-min - 1px; 22 | $mq-xlarge-max: $mq-xxlarge-min - 1px; 23 | $mq-xxlarge-max: 5120px; 24 | 25 | 26 | // Mixins 27 | %button-feel { 28 | @extend %unselectable; 29 | cursor: pointer; 30 | } 31 | 32 | %unselectable { 33 | -webkit-user-select: none; /* Chrome/Safari */ 34 | -moz-user-select: none; /* Firefox */ 35 | -ms-user-select: none; /* IE10+ */ 36 | 37 | /* Rules below not implemented in browsers yet */ 38 | -o-user-select: none; 39 | user-select: none; 40 | } 41 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/app.js: -------------------------------------------------------------------------------- 1 | import GameCtrl from './controllers/game/game.ctrl' 2 | import MenuCtrl from './controllers/menu/menu.ctrl' 3 | 4 | require('./style.scss'); 5 | 6 | var introDom = document.getElementById('app-intro') 7 | if (introDom) { 8 | introDom.remove() 9 | } 10 | 11 | var container = document.body 12 | 13 | var myGame = new GameCtrl(() => { 14 | myMenu.el.style.display = '' 15 | myGame.el.style.display = 'none' 16 | }) 17 | container.appendChild(myGame.el) 18 | 19 | var myMenu = new MenuCtrl((type, difficulty) => { 20 | myGame.start(type, difficulty) 21 | 22 | myMenu.el.style.display = 'none' 23 | myGame.el.style.display = '' 24 | }) 25 | myMenu.init() 26 | container.appendChild(myMenu.el) 27 | 28 | myGame.el.style.display = 'none' 29 | 30 | 31 | window.scrollTo(0, 0) 32 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/countdown/countdown.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .countdown-container { 4 | float: right; 5 | width: 10rem; 6 | height: 1rem; 7 | margin: .25rem 0 .25rem .5rem; 8 | border: 1px solid currentColor; 9 | border-radius: .25rem; 10 | box-sizing: border-box; 11 | color: inherit; 12 | } 13 | 14 | .alert { 15 | color: red; 16 | animation: blink 1s infinite; 17 | -webkit-animation: blink 1s infinite; 18 | } 19 | 20 | .countdown-content { 21 | display: block; 22 | height: 100%; 23 | width: 0; 24 | color: inherit; 25 | background-color: currentColor; 26 | } -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/extender/extender.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | // Not much for now... 4 | .extender { 5 | 6 | } 7 | 8 | .extender-button { 9 | display: block; 10 | width: 100%; 11 | padding: .25em; 12 | text-align: center; 13 | background: rgba(255,255,255,.125); 14 | border-bottom: $border; 15 | 16 | &:after { 17 | // ▲▼▾▴△▽ 18 | content: '▽'; 19 | margin-left: .5em; 20 | } 21 | 22 | .extender.active &:after { 23 | // ▲▼▾▴△▽ 24 | content: '△'; 25 | } 26 | } 27 | 28 | .extender-content { 29 | display: none; 30 | 31 | .extender.active & { 32 | display: inherit; 33 | } 34 | } 35 | 36 | @media (orientation: landscape), (min-width: $mq-xlarge-min) { 37 | .extender.small-only { 38 | .extender-button { 39 | display: none; 40 | } 41 | .extender-content { 42 | display: inherit; 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/game/game.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | @media (max-width: $mq-large-max) { 4 | .history-wrap { 5 | border-bottom: $border; 6 | 7 | .history { 8 | margin: 0 #{-$gutter}; 9 | } 10 | .history-container { 11 | padding: 0 #{$gutter}; 12 | } 13 | } 14 | } 15 | 16 | @media (orientation: landscape), (min-width: $mq-xlarge-min) { 17 | .game-layout-lock { 18 | align-self: center; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/lock/lock.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .lock { 4 | display: block; 5 | width: 320px; 6 | max-width: 90%; 7 | margin: auto; 8 | 9 | &-flashdots circle { 10 | visibility: hidden; 11 | opacity: 1; 12 | 13 | &.active { 14 | visibility: visible; 15 | opacity: 0; 16 | transition: visibility 0s, opacity .3s; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/menu/menu.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .menu-title { 4 | margin: 0; 5 | } 6 | 7 | .menu-layout-instructions { 8 | -webkit-flex:1 0 auto; 9 | } 10 | 11 | .menu-layout-form { 12 | max-width: 480px; 13 | } 14 | 15 | .introduction-demo { 16 | display: block; 17 | width: 100%; 18 | max-width: 320px; 19 | margin: 1rem auto; 20 | } 21 | 22 | @media (orientation: landscape), (min-width: $mq-xlarge-min) { 23 | .menu-layout { 24 | align-items: center; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/option/option.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .selectbox { 4 | border: 1px solid $theme_bright; 5 | margin-bottom: .5rem; 6 | border-radius: .4rem; 7 | padding: .25rem; 8 | } 9 | 10 | .selectbox-item { 11 | @extend %button-feel; 12 | padding: .25rem; 13 | text-align: center; 14 | display: inline-block; 15 | box-sizing: border-box; 16 | } 17 | 18 | .selectbox-item.active { 19 | background: $theme_bright; 20 | color: $theme_dark; 21 | border-radius: .2rem; 22 | } 23 | 24 | .selectbox-1 .selectbox-item { width: 100%; } 25 | .selectbox-2 .selectbox-item { width: 50%; } 26 | .selectbox-3 .selectbox-item { width: 33.33%; } 27 | .selectbox-4 .selectbox-item { width: 25%; } 28 | .selectbox-5 .selectbox-item { width: 20%; } 29 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/selector/selector.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .selector-left, .selector-right { 4 | width: 2rem; 5 | } 6 | 7 | .selector-left { 8 | float: left; 9 | } 10 | 11 | .selector-right { 12 | float: right; 13 | } 14 | 15 | .selector-label { 16 | margin: 0 auto; 17 | display: block; 18 | } 19 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/controllers/statusBar/statusBar.scss: -------------------------------------------------------------------------------- 1 | @import "../../_variables.scss"; 2 | 3 | .status-bar { 4 | height: 1.5rem; 5 | padding-bottom: .25rem; 6 | border-bottom: 1px dotted $theme_bright; 7 | 8 | &:after { 9 | content: ''; 10 | clear: both; 11 | } 12 | 13 | &-cancel { 14 | height: 100%; 15 | font-size: 1rem; 16 | 17 | &:before { 18 | content: '«'; 19 | margin-right: .25em; 20 | } 21 | } 22 | 23 | &-info { 24 | float: right; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/breaklock/src/utils/leftPadNum.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dummy leftpad for numbers 3 | * @param {number} num Number to left pad 4 | * @param {number} len Length of the final string 5 | * @return {string} Leftpadded string 6 | */ 7 | var leftPadNum = (num, len) => { 8 | let str = Math.abs(num) + '', 9 | isNegative = num < 0 10 | for (let i = (len - str.length); i > 0; i--) { 11 | str = '0' + str 12 | } 13 | return (isNegative ? '-' : '') + str 14 | } 15 | 16 | export default leftPadNum 17 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/README.md: -------------------------------------------------------------------------------- 1 | # Cookie-Clicker-Source-Code-Beta 2 | 2.021 source code for... educational purposes... BETA edition!
3 | Download and Extract to delete free time.. BETA EDITION! Or just use the website.

4 | Do not worry, I will be updating this to be up to date with the current Cookie Clicker beta version.
5 | 6 | Credits obviously go Orteil, visit the official website here: http://orteil.dashnet.org/cookieclicker/ 7 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/ajax.js: -------------------------------------------------------------------------------- 1 | function ajax(url,callback){ 2 | var ajaxRequest; 3 | try{ajaxRequest = new XMLHttpRequest();} catch (e){try{ajaxRequest=new ActiveXObject('Msxml2.XMLHTTP');} catch (e) {try{ajaxRequest=new ActiveXObject('Microsoft.XMLHTTP');} catch (e){alert("Something broke!");return false;}}} 4 | if (callback){ajaxRequest.onreadystatechange=function(){if(ajaxRequest.readyState==4){callback(ajaxRequest.responseText);}}} 5 | ajaxRequest.open('GET',url+'&nocache='+(new Date().getTime()),true);ajaxRequest.send(null); 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/BGgarden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/BGgarden.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/alchemylab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/alchemylab.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/alchemylabBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/alchemylabBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/alchemylabIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/alchemylabIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/alteredGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/alteredGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/antiGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/antiGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/antimattercondenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/antimattercondenser.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/antimattercondenserBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/antimattercondenserBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/antimattercondenserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/antimattercondenserIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/ascendBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/ascendBox.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/ascendInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/ascendInfo.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/ascendSlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/ascendSlot.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/ascendWisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/ascendWisp.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/ascendedBakingPod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/ascendedBakingPod.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bank.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bankBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bankBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bankGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bankGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgBlack.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgBlue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgBlue.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgGold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgGold.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgMoney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgMoney.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgMoneyChart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgMoneyChart.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgRed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgRed.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bgWhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bgWhite.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/blackGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/blackGradient.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/blackGradientLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/blackGradientLeft.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/blackGradientSmallTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/blackGradientSmallTop.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bracketPanelLeftS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bracketPanelLeftS.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bracketPanelRightS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bracketPanelRightS.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/brokenCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/brokenCookie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/brokenCookieHalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/brokenCookieHalo.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/buildings.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bunnies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bunnies.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/bunnyGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/bunnyGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/buttonTile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/buttonTile.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/caramelWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/caramelWave.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/chancemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/chancemaker.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/chancemakerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/chancemakerBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/chocolateMilkWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/chocolateMilkWave.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/clayBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/clayBG.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/contract.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/control.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/cookieShower1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/cookieShower1.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/cookieShower2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/cookieShower2.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/cookieShower3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/cookieShower3.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/cosmicGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/cosmicGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/cursor.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/cursoricon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/cursoricon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/darkNoise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/darkNoise.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/darkNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/darkNoise.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/darkNoiseTopBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/darkNoiseTopBar.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dragon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dragonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dragonBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dragonFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dragonFrame.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dungeonFactory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dungeonFactory.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dungeonIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dungeonIcons.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dungeonOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dungeonOverlay.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/dungeonTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/dungeonTiles.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/easterEggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/easterEggs.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/elfGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/elfGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/empty.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/emptyFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/emptyFrame.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/factory.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/factoryBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/factoryBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/factoryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/factoryIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/farm.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/farmBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/farmBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/farmIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/farmIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/farmerGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/farmerGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/favicon.ico -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/featherLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/featherLeft.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/featherRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/featherRight.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/filler.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/fractalEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/fractalEngine.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/fractalEngineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/fractalEngineBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/frameBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/frameBorder.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/frostedReindeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/frostedReindeer.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/gardenPlants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/gardenPlants.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/gardenPlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/gardenPlots.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/gardenTip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/gardenTip.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/girlscoutChip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/girlscoutChip.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/girlscoutCrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/girlscoutCrumb.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/girlscoutDoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/girlscoutDoe.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/girlscoutLucky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/girlscoutLucky.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/glint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/glint.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/goldCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/goldCookie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandmaBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandmaBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandmaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandmaIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandmas1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandmas1.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandmas2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandmas2.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandmas3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandmas3.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grandmasGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grandmasGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/grimoireBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/grimoireBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/heartStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/heartStorm.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/hearts.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/heavenRing1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/heavenRing1.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/heavenRing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/heavenRing2.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/heavenlyMoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/heavenlyMoney.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/icons.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/imperfectCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/imperfectCookie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/infoBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/infoBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/infoBGfade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/infoBGfade.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/levelUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/levelUp.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/linkPulse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/linkPulse.gif -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/linkPulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/linkPulse.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/luckyGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/luckyGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mapBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mapBG.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mapIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mapIcons.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mapTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mapTiles.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/marbleBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/marbleBG.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/marshmallows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/marshmallows.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/metaGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/metaGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milk.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkBanana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkBanana.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkBlack.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkBlood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkBlood.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkBlueFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkBlueFire.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkBlueberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkBlueberry.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkCaramel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkCaramel.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkChocolate.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkFire.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkGold.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkGreenFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkGreenFire.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkHoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkHoney.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkLime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkLime.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkOrange.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkPlain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkPlain.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkRaspberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkRaspberry.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkStars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkStars.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkStrawberry.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkVanilla.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkWave.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/milkZebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/milkZebra.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mine.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mineBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mineIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mineIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/minerGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/minerGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/money.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mysteriousHero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mysteriousHero.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mysteriousOpponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mysteriousOpponent.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/mysticBG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/mysticBG.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/nest.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/orangeWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/orangeWave.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelGradientBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelGradientBottom.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelGradientLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelGradientLeft.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelGradientRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelGradientRight.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelGradientTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelGradientTop.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelHorizontal.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelMenu.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelMenu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelMenu2.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelMenu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelMenu3.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/panelVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/panelVertical.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/pantheonBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/pantheonBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/perfectCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/perfectCookie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/pieFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/pieFill.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portal.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portalBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portalBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portalIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portraitChip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portraitChip.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portraitCrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portraitCrumb.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portraitDoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portraitDoe.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/portraitLucky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/portraitLucky.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/prestigeBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/prestigeBar.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/prestigeBarCap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/prestigeBarCap.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/prism.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/prismBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/prismBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/rainbowGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/rainbowGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/raspberryWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/raspberryWave.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundFrameBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundFrameBorder.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundedPanelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundedPanelBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundedPanelBGS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundedPanelBGS.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundedPanelLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundedPanelLeft.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundedPanelLeftS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundedPanelLeftS.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundedPanelRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundedPanelRight.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/roundedPanelRightS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/roundedPanelRightS.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/santa.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/sentientFurnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/sentientFurnace.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shadedBorders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shadedBorders.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shadedBordersGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shadedBordersGold.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shadedBordersRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shadedBordersRed.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shadedBordersSoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shadedBordersSoft.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shine.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shineGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shineGold.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shineRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shineRed.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shineSpoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shineSpoke.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shinyWrinkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shinyWrinkler.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shinyWrinklerBits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shinyWrinklerBits.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shipment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shipment.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shipmentBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shipmentBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/shipmentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/shipmentIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/smallCookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/smallCookies.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/smallDollars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/smallDollars.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/snow.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/snow2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/snow2.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/sparkles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/sparkles.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/spellBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/spellBG.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/spinnyBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/spinnyBig.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/spinnySmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/spinnySmall.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/spookyCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/spookyCookie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/starbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/starbg.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/storeTile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/storeTile.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/sugarLump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/sugarLump.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/temple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/temple.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/templeBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/templeBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/templeGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/templeGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/timemachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/timemachine.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/timemachineBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/timemachineBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/timemachineIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/timemachineIcon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/timerBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/timerBars.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/transmutedGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/transmutedGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeFrame.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeFrameHeavenly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeFrameHeavenly.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeFrameOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeFrameOld.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeFrameShadowOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeFrameShadowOld.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeHighlight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeHighlight.jpg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeHighlight.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/upgradeSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/upgradeSelector.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/weeHoodie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/weeHoodie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/winterFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/winterFrame.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/winterWrinkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/winterWrinkler.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/witchGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/witchGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wizardtower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wizardtower.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wizardtowerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wizardtowerBackground.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/workerGrandma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/workerGrandma.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wrathContract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wrathContract.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wrathCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wrathCookie.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wrinkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wrinkler.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wrinklerBits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wrinklerBits.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/img/wrinklerBitsOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/img/wrinklerBitsOld.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/showads.js: -------------------------------------------------------------------------------- 1 | //this lets us detect adblockers so we can adjust the layout in case ads aren't shown ! (we're not using this for anything weird, promise !) 2 | //this works because an adblocker will usually block this file from being embedded at all 3 | var showAds=false; 4 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/buy1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/buy1.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/buy2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/buy2.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/buy3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/buy3.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/buy4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/buy4.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/buyHeavenly.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/buyHeavenly.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/charging.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/charging.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/chime.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/chime.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/choir.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/choir.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click1.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click2.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click3.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click4.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click5.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click6.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/click7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/click7.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickOff.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickOff.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickOn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickOn.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb1.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb2.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb3.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb4.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb5.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb6.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/clickb7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/clickb7.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/cookieBreak.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/cookieBreak.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/cymbalCrash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/cymbalCrash.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/cymbalRev.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/cymbalRev.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/jingle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/jingle.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/jingleClick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/jingleClick.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/levelPrestige.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/levelPrestige.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/page.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/page.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/pop1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/pop1.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/pop2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/pop2.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/pop3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/pop3.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/press.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/press.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/sell1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/sell1.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/sell2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/sell2.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/sell3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/sell3.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/sell4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/sell4.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/shimmerClick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/shimmerClick.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/smallCymbalCrash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/smallCymbalCrash.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/smallTick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/smallTick.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/spell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/spell.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/spellFail.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/spellFail.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/spirit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/spirit.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/squish1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/squish1.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/squish2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/squish2.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/squish3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/squish3.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/squish4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/squish4.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/switch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/switch.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/swooshIn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/swooshIn.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/swooshOut.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/swooshOut.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/thud.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/thud.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/tick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/tick.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/cookies/snd/upgrade.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/cookies/snd/upgrade.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/files/assets/3324896/1/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/files/assets/3324896/1/spritesheet.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/files/assets/3371285/1/sfx_hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/files/assets/3371285/1/sfx_hit.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/files/assets/3371286/1/sfx_wing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/files/assets/3371286/1/sfx_wing.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/files/assets/3371287/1/sfx_die.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/files/assets/3371287/1/sfx_die.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/files/assets/3371288/1/sfx_point.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/files/assets/3371288/1/sfx_point.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/files/assets/3371289/1/sfx_swooshing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/files/assets/3371289/1/sfx_swooshing.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/flappybird/logo.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/manifest.json: -------------------------------------------------------------------------------- 1 | {"short_name":"Flappy Bird","name":"Flappy Bird","start_url":"","display":"fullscreen","icons":[{"src":"thumbs/180.jpg","sizes":"180x180","type":"image/jpeg"},{"src":"thumbs/360.jpg","sizes":"360x360","type":"image/jpeg"},{"src":"thumbs/540.jpg","sizes":"540x540","type":"image/jpeg"},{"src":"thumbs/720.jpg","sizes":"720x720","type":"image/jpeg"}]} -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/flappybird/styles.css: -------------------------------------------------------------------------------- 1 | html { 2 | height: 100%; 3 | background-color: #1d292c; 4 | } 5 | body { 6 | margin: 0; 7 | max-height: 100%; 8 | height: 100%; 9 | overflow: hidden; 10 | background-color: #1d292c; 11 | font-family: Helvetica, arial, sans-serif; 12 | position: relative; 13 | width: 100%; 14 | 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | 18 | #application-canvas { 19 | display: block; 20 | position: absolute; 21 | top: 0; 22 | left: 0; 23 | right: 0; 24 | bottom: 0; 25 | } 26 | #application-canvas.fill-mode-NONE { 27 | margin: auto; 28 | } 29 | #application-canvas.fill-mode-KEEP_ASPECT { 30 | width: 100%; 31 | height: auto; 32 | margin: 0; 33 | } 34 | #application-canvas.fill-mode-FILL_WINDOW { 35 | width: 100%; 36 | height: 100%; 37 | margin: 0; 38 | } 39 | 40 | canvas:focus { 41 | outline: none; 42 | } 43 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/CNAME: -------------------------------------------------------------------------------- 1 | hextris.io 2 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/a.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/favicon.ico -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/images/android.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/images/facebook-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/images/facebook-opengraph.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/images/twitter-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/images/twitter-opengraph.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/js/Text.js: -------------------------------------------------------------------------------- 1 | function Text(x,y,text,font,color,incrementFunction){ 2 | this.x = x; 3 | this.y = y; 4 | this.font = font; 5 | this.color = color; 6 | this.opacity =1; 7 | this.text = text; 8 | this.alive=1; 9 | this.draw = function(){ 10 | if (this.alive>0) { 11 | ctx.globalAlpha = this.opacity; 12 | renderText((this.x + gdx), (this.y + gdy),50,this.color,this.text); 13 | ctx.globalAlpha =1; 14 | incrementFunction(this); 15 | return true; 16 | } 17 | else { 18 | return false; 19 | } 20 | }; 21 | } 22 | 23 | function fadeUpAndOut(text){ 24 | text.opacity -= MainHex.dt * Math.pow(Math.pow((1-text.opacity), 1/3)+1,3)/100; 25 | text.alive = text.opacity; 26 | text.y -= 3 * MainHex.dt; 27 | } 28 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/js/math.js: -------------------------------------------------------------------------------- 1 | function rotatePoint(x, y, theta) { 2 | var thetaRad = theta * (Math.PI / 180); 3 | var rotX = Math.cos(thetaRad) * x - Math.sin(thetaRad) * y; 4 | var rotY = Math.sin(thetaRad) * x + Math.cos(thetaRad) * y; 5 | 6 | return { 7 | x: rotX, 8 | y: rotY 9 | }; 10 | } 11 | 12 | function randInt(min, max) { 13 | return Math.floor((Math.random() * max) + min); 14 | } 15 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fa/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fa/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fa/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fa/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fa/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fa/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fa/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fa/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fonts/Exo2-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fonts/Exo2-ExtraLight.otf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fonts/Exo2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fonts/Exo2-Regular.otf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fonts/Exo2-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fonts/Exo2-SemiBold.otf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fonts/Lovelo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fonts/Lovelo.otf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fonts/QuattrocentoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fonts/QuattrocentoSans-Regular.ttf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/style/fonts/roboto.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/hextris/style/fonts/roboto.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/hextris/vendor/jsonfn.min.js: -------------------------------------------------------------------------------- 1 | "use strict";(function(exports){exports.stringify=function(e){return JSON.stringify(e,function(e,t){if(t instanceof Function||typeof t=="function"){return t.toString()}if(t instanceof RegExp){return"_PxEgEr_"+t}return t})};exports.parse=function(str,date2obj){var iso8061=date2obj?/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/:false;return JSON.parse(str,function(key,value){var prefix;if(typeof value!="string"){return value}if(value.length<8){return value}prefix=value.substring(0,8);if(iso8061&&value.match(iso8061)){return new Date(value)}if(prefix==="function"){return eval("("+value+")")}if(prefix==="_PxEgEr_"){return eval(value.slice(8))}return value})};exports.clone=function(e,t){return exports.parse(exports.stringify(e),t)}})(typeof exports==="undefined"?window.JSONfn={}:exports) -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/.gitignore: -------------------------------------------------------------------------------- 1 | **.db** 2 | *.db 3 | .idea/ 4 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/.htaccess: -------------------------------------------------------------------------------- 1 | AddType application/x-web-app-manifest+json .webapp 2 | AddType application/json .json 3 | AddCharset ISO-8859-1 .json -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/fonts/PressStart2Play.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/fonts/PressStart2Play.eot -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/fonts/PressStart2Play.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/fonts/PressStart2Play.ttf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/fonts/PressStart2Play.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/fonts/PressStart2Play.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/googlee6aee5a894225e60.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googlee6aee5a894225e60.html -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-106x106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-106x106.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-130x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-130x130.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-150x130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-150x130.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-200x200.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-300x300.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-32x32.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/Icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/Icon-512x512.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/audio-icon-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/audio-icon-mute.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/audio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/audio-icon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/bg-pattern-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/bg-pattern-black.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/heart.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/icon-128.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/icon-128_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/icon-128_old.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/instructions/instructions_chase.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/instructions/instructions_chase.PNG -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/instructions/instructions_powerpill.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/instructions/instructions_powerpill.PNG -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/instructions/instructions_scatter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/instructions/instructions_scatter.PNG -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/img/platzh1rsch-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/img/platzh1rsch-logo.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/js/pacman/ghost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/js/pacman/ghost.js -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/js/pacman/pacman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/js/pacman/pacman.js -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pacman Canvas", 3 | "short_name": "Pacman Canvas", 4 | "description": "An old classic, rewritten in HTML5", 5 | "version": "0.92", 6 | "lang": "en-US", 7 | 8 | "display": "standalone", 9 | "orientation": "portrait", 10 | "start_url": "./?utm_source=web_app_manifest", 11 | 12 | 13 | "icons": [ 14 | { 15 | "src": "img/icon-128.png", 16 | "sizes": "128x128", 17 | } 18 | ], 19 | 20 | "app": { 21 | "urls": [ 22 | "http://pacman.platzh1rsch.ch/" 23 | ], 24 | "launch": { 25 | "web_url": "http://pacman.platzh1rsch.ch" 26 | } 27 | 28 | }, 29 | 30 | "verification_key" : "eca78f4d-14f3-4fe7-8b44-3e0006a9a9c7", 31 | "type" : "web", 32 | "last_update" : "2018-03-06 16:45:11+0000" 33 | 34 | } 35 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/mp3/die.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/mp3/die.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/mp3/eatghost.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/mp3/eatghost.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/mp3/powerpill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/mp3/powerpill.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/mp3/theme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/mp3/theme.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/mp3/waka.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/mp3/waka.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/pacman-canvas.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pacman Canvas", 3 | "description": "An old classic, rewritten in HTML5", 4 | "launch_path": "/", 5 | "developer": { 6 | "name": "platzh1rsch", 7 | "url": "http://platzh1rsch.ch" 8 | }, 9 | "icons": { 10 | "128": "/img/icon-128.png" 11 | }, 12 | "default_locale": "en" 13 | } -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/wav/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/wav/die.wav -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/wav/eatghost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/wav/eatghost.wav -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/wav/powerpill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/wav/powerpill.wav -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/wav/theme.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/wav/theme.wav -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/wav/waka.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/pacman/wav/waka.wav -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/pacman/web-app-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "verification_key" : "eca78f4d-14f3-4fe7-8b44-3e0006a9a9c7", 3 | "version" : "0.92", 4 | "type" : "web", 5 | "last_update" : "2018-03-06 16:45:11+0000" 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/radius-raid/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | concat.js 3 | 4 | notes.txt 5 | 6 | radius-raid-js13k.sublime-project 7 | radius-raid-js13k.sublime-workspace -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/radius-raid/js/storage.js: -------------------------------------------------------------------------------- 1 | // local storage helpers - source: http://stackoverflow.com/questions/2010892/storing-objects-in-html5-localstorage/3146971#3146971 2 | Storage.prototype.setObject = function( key, value ) { 3 | this.setItem( key, JSON.stringify( value ) ); 4 | } 5 | 6 | Storage.prototype.getObject = function( key ) { 7 | var value = this.getItem( key ); 8 | return value && JSON.parse( value ); 9 | } 10 | 11 | Storage.prototype.removeObject = function( key ) { 12 | this.removeItem( key ); 13 | } 14 | 15 | $.setupStorage = function() { 16 | $.storage = localStorage.getObject( 'radiusraid' ) || { 17 | 'mute': 0, 18 | 'autofire': 0, 19 | 'score': 0, 20 | 'level': 0, 21 | 'rounds': 0, 22 | 'kills': 0, 23 | 'bullets': 0, 24 | 'powerups': 0, 25 | 'time': 0 26 | }; 27 | }; 28 | 29 | $.updateStorage = function() { 30 | localStorage.setObject( 'radiusraid', $.storage ); 31 | }; 32 | 33 | $.clearStorage = function() { 34 | localStorage.removeObject( 'radiusraid' ); 35 | $.setupStorage(); 36 | }; -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/radius-raid/min.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/radius-raid/min.zip -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/css/skulls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/css/skulls.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/css/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #000205; 3 | background-image: url("skulls.png"); 4 | } 5 | 6 | #game { 7 | position: fixed; 8 | top: 50%; 9 | left: 50%; 10 | margin-top: -300px; 11 | margin-left: -400px; 12 | } -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/bullet.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/enemy-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/enemy-bullet.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/explode.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/invader.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/invader32x32x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/invader32x32x4.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/player.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/img/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/spaceinvaders/assets/img/starfield.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/javascript/built.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.23.. 3 | */ 4 | /* 5 | * Build script 6 | * To use: npm install -g require.js 7 | * r.js -o built.js 8 | * */ 9 | 10 | ({ 11 | baseUrl: ".", 12 | name: "main", 13 | out: "built/main-built.js" 14 | }) -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/javascript/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | require(['state/Load','state/Start','state/Play','state/End','lib/phaser-no-physics.min'],function(Load,Start,Play,End){ 5 | 6 | var _game = new Phaser.Game(800, 600, Phaser.AUTO, 'game'); 7 | 8 | 9 | //Load state 10 | Load.init(_game,'Start'); //args: game object, next state 11 | _game.state.add('Load',Load.getLoadState()); //args: state name, geting the load state 12 | 13 | //Start State 14 | Start.init(_game,'Play'); 15 | _game.state.add('Start',Start.getStartState()); 16 | 17 | //Play State 18 | Play.init(_game,'End'); 19 | _game.state.add('Play',Play.getPlayState()); 20 | 21 | //End State 22 | End.init(_game,'Play'); 23 | _game.state.add('End',End.getEndState()); 24 | 25 | //Starting the Load state 26 | _game.state.start('Load'); 27 | 28 | }); 29 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/javascript/module/Background.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | define(function(){ 5 | 6 | //Private variables 7 | var _game = null, 8 | _starfield = null; 9 | 10 | return{ 11 | init: function(game,level,mode){ 12 | _game = game; 13 | }, 14 | preload: function(){ 15 | _game.load.image('starfield', 'assets/img/starfield.png'); 16 | }, 17 | create: function(){ 18 | _starfield = _game.add.tileSprite(0, 0,800,600, 'starfield'); 19 | }, 20 | update: function(){ 21 | _starfield.tilePosition.y +=2; 22 | } 23 | 24 | } 25 | }); -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/javascript/module/Level.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.05.. 3 | */ 4 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/assets/javascript/state/End.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by stryker on 2014.03.22.. 3 | */ 4 | define(['module/HUD'],function(HUD){ 5 | var _game = null, 6 | _nextState = null; 7 | 8 | var _End = { 9 | create: function(){ 10 | HUD.createTitle(' Game Over \n Press Spacebar'); 11 | 12 | //Starting the Play state after the spacebar is down 13 | _game.input.keyboard.addKey(Phaser.Keyboard.SPACEBAR).onDown.addOnce(function(){ 14 | _game.state.start(_nextState); 15 | }); 16 | } 17 | } 18 | 19 | return{ 20 | init: function(game,nextState){ 21 | _game = game; 22 | _nextState = nextState; 23 | }, 24 | getEndState: function(){ 25 | return (_End); 26 | } 27 | } 28 | }) -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Space Invaders 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/spaceinvaders/indexOpt.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Get Started 6 | 7 | 8 | 9 | 10 | 11 |
12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", 5 | { 6 | "targets": { 7 | "browsers": [ 8 | "ios >= 9", 9 | "android >= 4" 10 | ] 11 | } 12 | } 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea/ 3 | npm-debug.log 4 | yarn.lock 5 | .DS_Store 6 | 7 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/background.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/bgm.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/bgm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/bgm.ogg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/block-perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/block-perfect.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/block-rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/block-rope.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/block.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c1.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c2.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c3.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c4.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c5.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c6.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c7.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/c8.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/drop-perfect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/drop-perfect.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/drop-perfect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/drop-perfect.ogg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/drop.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/drop.ogg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f1.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f2.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f3.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f4.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f5.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f6.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/f7.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/game-over.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/game-over.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/game-over.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/game-over.ogg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/heart.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/hook.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-bg.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-index-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-index-logo.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-index-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-index-start.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-index-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-index-title.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-loading-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-loading-logo.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-loading.gif -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-modal-again-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-modal-again-b.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-modal-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-modal-bg.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-modal-invite-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-modal-invite-b.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-modal-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-modal-over.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/main-share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/main-share-icon.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/rope.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/rotate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/rotate.mp3 -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/rotate.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/rotate.ogg -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/score.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/tutorial-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/tutorial-arrow.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/tutorial.png -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/wenxue.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/wenxue.eot -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/wenxue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/wenxue.ttf -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/assets/wenxue.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/gfiles/html5games/towermaster/assets/wenxue.woff -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const path = require('path') 3 | const opn = require('opn') 4 | 5 | const server = express() 6 | const host = 'http://localhost:8082' 7 | server.use('/assets', express.static(path.resolve(__dirname, './assets'))) 8 | server.use('/dist', express.static(path.resolve(__dirname, './dist'))) 9 | 10 | server.get('*', (req, res) => { 11 | res.sendFile(path.resolve(__dirname, './index.html')); 12 | }) 13 | 14 | server.listen(8082, () => { 15 | console.log(`server started at ${host}`) 16 | opn(host) 17 | }) 18 | -------------------------------------------------------------------------------- /public/assets/gfiles/html5games/towermaster/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tower_game", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "npm run build && node index.js", 8 | "build": "webpack --mode production --module-bind js=babel-loader" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/bmqb/tower_game.git" 13 | }, 14 | "author": "", 15 | "license": "ISC", 16 | "bugs": { 17 | "url": "https://github.com/bmqb/tower_game/issues" 18 | }, 19 | "homepage": "https://github.com/bmqb/tower_game#readme", 20 | "devDependencies": { 21 | "@babel/core": "^7.0.0-beta.42", 22 | "@babel/preset-env": "^7.0.0-beta.42", 23 | "babel-loader": "^8.0.0-beta", 24 | "webpack": "^4.0.1", 25 | "webpack-cli": "^2.0.9" 26 | }, 27 | "dependencies": { 28 | "cooljs": "^1.0.2", 29 | "express": "^4.16.3", 30 | "opn": "^5.3.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/assets/ruffle/664f962a4ce56c14c040.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/ruffle/664f962a4ce56c14c040.wasm -------------------------------------------------------------------------------- /public/assets/ruffle/de0a361a98a2a9d6b6d7.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/public/assets/ruffle/de0a361a98a2a9d6b6d7.wasm -------------------------------------------------------------------------------- /public/assets/ruffle/package.json: -------------------------------------------------------------------------------- 1 | {"name":"@ruffle-rs/ruffle","version":"0.1.0-nightly.2022.05.12","description":"Putting Flash back on the web. Ruffle will polyfill all Flash content and replace it with the Ruffle flash player.","license":"(MIT OR Apache-2.0)","keywords":["flash","swf"],"homepage":"https://ruffle.rs","bugs":"https://github.com/ruffle-rs/ruffle/issues","repository":"github:ruffle-rs/ruffle","main":"ruffle.js"} -------------------------------------------------------------------------------- /public/media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Vanadium 6 | 7 | 8 | 9 | 10 |
11 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /vanadium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titaniumnetwork-dev/Vanadium/8e9f0698c7b2f5243d94b58b1b12b1057de9724f/vanadium.png --------------------------------------------------------------------------------