Merge branch 'main' of https://github.com/selenite-cc/selenite
@ -29,4 +29,7 @@
|
|||||||
"quizlet": [
|
"quizlet": [
|
||||||
"Your Sets", "https://assets.quizlet.com/a/j/dist/app/i/logo/2021/q-twilight.e27821d9baad165.png"
|
"Your Sets", "https://assets.quizlet.com/a/j/dist/app/i/logo/2021/q-twilight.e27821d9baad165.png"
|
||||||
]
|
]
|
||||||
|
"schoology": [
|
||||||
|
"Schoology" "https://technology-mnps.ss13.sharpschool.com/UserFiles/Servers/Server_33575695/Image/Technology/Digital%20Tools/Schoology/Schoology.png"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
1
cmm-client/cover.svg
Normal file
37319
cmm-client/index.html
Normal file
46
games.json
@ -1,5 +1,47 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
"name": "Minesweeper",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "minesweeper",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "POOM",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "poom",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Solitaire",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "solitaire",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Spank the Monkey",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "spankthemonkey",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CMM Client",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "cmm-client",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Pool",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "pool",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Yohoho.io",
|
||||||
|
"image": "cover.svg",
|
||||||
|
"directory": "yohoho",
|
||||||
|
"recommended": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
"name": "Tube Jumpers",
|
"name": "Tube Jumpers",
|
||||||
"image": "cover.svg",
|
"image": "cover.svg",
|
||||||
"directory": "tube-jumpers",
|
"directory": "tube-jumpers",
|
||||||
@ -48,12 +90,12 @@
|
|||||||
"recommended": "1"
|
"recommended": "1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Online Minecraft",
|
"name": "Resent Client",
|
||||||
"directory": "online-mc",
|
"directory": "online-mc",
|
||||||
"image": "logo.png"
|
"image": "logo.png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Offline Minecraft",
|
"name": "Eaglercraft 1.5.2",
|
||||||
"directory": "offline-mc",
|
"directory": "offline-mc",
|
||||||
"image": "logo.png",
|
"image": "logo.png",
|
||||||
"recommended": "1"
|
"recommended": "1"
|
||||||
|
46
index.js
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
const express = require('express');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const app = express();
|
||||||
|
const port = process.env.PORT || 3000;
|
||||||
|
|
||||||
|
|
||||||
|
app.use(express.static(__dirname));
|
||||||
|
|
||||||
|
app.get('/projects', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'projects.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/bookmarklets', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'bookmarklets.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/settings', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'settings.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/support', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'support.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/about', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'about.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/transfer', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'transfer.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/suggest', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'suggest.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get('/contact', (req, res) => {
|
||||||
|
res.sendFile(path.join(__dirname, 'contact.html'));
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
app.listen(port, () => {
|
||||||
|
console.log(`Selenite is running on port ${port}`);
|
||||||
|
});
|
3
minecraft-tower-defence-2/cover.svg
Normal file
After Width: | Height: | Size: 14 KiB |
2
minecraft-tower-defence-2/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<embed src="minecraft-tower-defence-2.swf" width="100%" height="100%"></embed>
|
||||||
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
BIN
minecraft-tower-defence-2/minecraft-tower-defence-2.swf
Normal file
BIN
minesweeper/Minesweeper.swf
Normal file
3
minesweeper/cover.svg
Normal file
After Width: | Height: | Size: 154 KiB |
2
minesweeper/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<embed src="Minesweeper.swf" width="100%" height="100%"></embed>
|
||||||
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
10
package.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "Bigfoot Games",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"scripts": {
|
||||||
|
"start": "node index.js"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"express": "^4.17.1"
|
||||||
|
}
|
||||||
|
}
|
@ -1,15 +1,2 @@
|
|||||||
<!doctype html>
|
<embed src="pacman(www.albinoblacksheep.com).swf" width="100%" height="100%"></embed>
|
||||||
<html>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=no">
|
|
||||||
<title>jsPacman | JavaScript Ms. Pac-Man Remake</title>
|
|
||||||
<script src="/js/all.js"></script>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<h1 style="position: absolute; left: -1000px;">jsPacman | HTML - CSS - JavaScript | Ms. Pac-Man Remake</h1>
|
|
||||||
<h2 style="position: absolute; left: -1000px;">Play Online Ms. Pac-Man</h2>
|
|
||||||
<div class="js-pacman-playground with-border">
|
|
||||||
</div>
|
|
||||||
<script type="text/javascript" src="bundle.js"></script></body>
|
|
||||||
</html>
|
|
||||||
|
BIN
pacman/pacman(www.albinoblacksheep.com).swf
Normal file
3
pool/cover.svg
Normal file
After Width: | Height: | Size: 66 KiB |
2
pool/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<embed src="pool.swf" width="100%" height="100%"></embed>
|
||||||
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
BIN
pool/pool.swf
Normal file
3
poom/cover.svg
Normal file
After Width: | Height: | Size: 31 KiB |
2
poom/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<embed src="poom(www.albinoblacksheep.com).swf" width="100%" height="100%"></embed>
|
||||||
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
BIN
poom/poom(www.albinoblacksheep.com).swf
Normal file
@ -8,6 +8,7 @@
|
|||||||
"join the discord NOW",
|
"join the discord NOW",
|
||||||
"have any of you played on the og padlet?",
|
"have any of you played on the og padlet?",
|
||||||
"linux is so much better than windows",
|
"linux is so much better than windows",
|
||||||
|
"🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸🇵🇸",
|
||||||
"chromebooks suck",
|
"chromebooks suck",
|
||||||
"technoblade never dies",
|
"technoblade never dies",
|
||||||
"Selenite has shut down.",
|
"Selenite has shut down.",
|
||||||
|
@ -63,6 +63,7 @@
|
|||||||
<option value="edpuzzle">Edpuzzle</option>
|
<option value="edpuzzle">Edpuzzle</option>
|
||||||
<option value="khan">Khan Academy</option>
|
<option value="khan">Khan Academy</option>
|
||||||
<option value="quizlet">Quizlet</option>
|
<option value="quizlet">Quizlet</option>
|
||||||
|
<option value="schoology">Schoology</option>
|
||||||
</select><br />
|
</select><br />
|
||||||
<input id="websubmit" class="submit" type="submit" value="Set Tab Cloak" />
|
<input id="websubmit" class="submit" type="submit" value="Set Tab Cloak" />
|
||||||
</form>
|
</form>
|
||||||
|
3
solitaire/cover.svg
Normal file
After Width: | Height: | Size: 104 KiB |
2
solitaire/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<embed src="solitaire.swf" width="100%" height="100%"></embed>
|
||||||
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
BIN
solitaire/solitaire.swf
Normal file
3
spankthemonkey/cover.svg
Normal file
After Width: | Height: | Size: 8.5 KiB |
2
spankthemonkey/index.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<embed src="spankthemonkey(www.albinoblacksheep.com).swf" width="100%" height="100%"></embed>
|
||||||
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
BIN
spankthemonkey/spankthemonkey(www.albinoblacksheep.com).swf
Normal file
@ -1,124 +1,2 @@
|
|||||||
<html>
|
<embed src="https://rawcdn.githack.com/WhoIsEv/relivedassets/e15b5ab7f7ed693fece78eeef35157454de9f77b/legacyflashgames/tetris2.swf" width="100%" height="100%"></embed>
|
||||||
<head>
|
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
|
||||||
|
|
||||||
<script src="/js/all.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
<title>TwitchTetris</title>
|
|
||||||
<link href="//fonts.googleapis.com/css?family=VT323" rel="stylesheet" type="text/css" />
|
|
||||||
<link href="/favicon.ico" rel="icon">
|
|
||||||
<link href="styles.css" rel="stylesheet" type="text/css" />
|
|
||||||
|
|
||||||
<script src="cookie.js"></script>
|
|
||||||
<script src="gameControls.js"></script>
|
|
||||||
|
|
||||||
<script src="jawsjs.js"></script>
|
|
||||||
<script src="Block.js"></script>
|
|
||||||
<script src="Shapes.js"></script>
|
|
||||||
<script src="WallKicks.js"></script>
|
|
||||||
<script src="ControlGroup.js"></script>
|
|
||||||
<script src="Background.js"></script>
|
|
||||||
<script src="RandomBag.js"></script>
|
|
||||||
<script src="PreviewGroup.js"></script>
|
|
||||||
<script src="ScoreTracker.js"></script>
|
|
||||||
<script src="TtyBlock.js"></script>
|
|
||||||
<script src="Game.js"></script>
|
|
||||||
<script src="Game_Logic.js"></script>
|
|
||||||
<script src="Button.js"></script>
|
|
||||||
<script src="tetris.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
function onClickEvent(event) {
|
|
||||||
if (Tetris.currentInstance) {
|
|
||||||
Tetris.currentInstance.mouseClicked(event.layerX, event.layerY);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<table border="0" class="mainTable">
|
|
||||||
<tr>
|
|
||||||
<td class="menuCell">
|
|
||||||
<div class="menu">
|
|
||||||
<img class="menuLogo" src="media/background/logo.png" />
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
|
|
||||||
<a href="index.html" class="bareLink">
|
|
||||||
<div class="menuItem selectedMenuItem">Play TwitchTetris</div>
|
|
||||||
</a>
|
|
||||||
<br />
|
|
||||||
<a href="controls.html" class="bareLink">
|
|
||||||
<div class="menuItem">Controls Options</div>
|
|
||||||
</a>
|
|
||||||
<br />
|
|
||||||
<a href="highScores.html" class="bareLink">
|
|
||||||
<div class="menuItem">High Scores</div>
|
|
||||||
</a>
|
|
||||||
<br />
|
|
||||||
<a href="about.html" class="bareLink">
|
|
||||||
<div class="menuItem">About TwitchTetris</div>
|
|
||||||
</a>
|
|
||||||
<br />
|
|
||||||
<a href="http://www.leighpauls.com" class="bareLink">
|
|
||||||
<div class="menuItem">About the Developer</div>
|
|
||||||
</a>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
<div class="instructions">
|
|
||||||
<b> > TwitchTetris --help </b>
|
|
||||||
<p>Use the keyboard controls to rotate and move the blocks as they fall</p>
|
|
||||||
<p>Place the blocks to form horizontal lines, which will be removed and make all the blocks above fall down. If the blocks reach the top of the screen, the game is over!</p>
|
|
||||||
<p>Clear multiple lines at a time, or clear lines in consective moves to earn more points.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td class="contentCell">
|
|
||||||
<div class="gamePanel">
|
|
||||||
<div class="gameElements">
|
|
||||||
<div class="ttyOutput scoreOutput" id="scoreDiv"></div>
|
|
||||||
<div class="ttyOutput linesOutput" id="linesDiv"></div>
|
|
||||||
<div class="ttyOutput levelOutput" id="levelDiv"></div>
|
|
||||||
<div class="ttyOutput tickerOutput" id="tickerDiv"></div>
|
|
||||||
|
|
||||||
<div class="gameEndOutputHidden" id="gameEndContainer">
|
|
||||||
<div style="padding: 5px;" id="gameEndDiv"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<canvas class="gameCanvas" id="gameCanvas" width="600" height="500" onclick="onClickEvent(event)" class="gameCanvas">
|
|
||||||
Your browser does not natively support Html5, or the Canvas Tag. Using this browser is slowing the progress of the web. Please get a modern browser, such as Google Chrome or Mozzila FireFox
|
|
||||||
</canvas>
|
|
||||||
</div>
|
|
||||||
<div class="controlsTitle">
|
|
||||||
<br />
|
|
||||||
<b>Controls:</b><br />
|
|
||||||
<table border="1" cellpadding="3" class="controlsTable">
|
|
||||||
<tr class="controlsTableHeader">
|
|
||||||
<td width="80">Move Block</td>
|
|
||||||
<td width="80">Soft Drop</td>
|
|
||||||
<td width="80">Rotate</td>
|
|
||||||
<td width="80">Save Piece</td>
|
|
||||||
<td width="80">Hard Drop</td>
|
|
||||||
<td width="80">Pause</td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td><span id="shiftLeft">Left</span>, <span id="shiftRight">Right</span></td>
|
|
||||||
<td><span id="softDrop">Down</span></td>
|
|
||||||
<td><span id="rotateLeft">Z</span>, <span id="rotateRight">X, Up</span></td>
|
|
||||||
<td><span id="swap">C, Shift</span></td>
|
|
||||||
<td><span id="hardDrop">Space</span></td>
|
|
||||||
<td>Esc</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
<a href="controls.html" class="bareLink">
|
|
||||||
<div class="menuItem">Controls Options</div>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
BIN
tetris/tetris2.swf
Normal file
3
yohoho/cover.svg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
yohoho/favicon/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
yohoho/favicon/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
yohoho/favicon/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 6.0 KiB |
9
yohoho/favicon/browserconfig.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/favicon/mstile-150x150.png"/>
|
||||||
|
<TileColor>#ffc40d</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
BIN
yohoho/favicon/favicon-16x16.png
Normal file
After Width: | Height: | Size: 572 B |
BIN
yohoho/favicon/favicon-32x32.png
Normal file
After Width: | Height: | Size: 842 B |
BIN
yohoho/favicon/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
1
yohoho/favicon/safari-pinned-tab.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="682.667" height="682.667" viewBox="0 0 512.000000 512.000000"><path d="M243.8.5c-.1.1-3.4.6-7.3.9C169.7 7.8 117.4 42 89.7 97.5c-13.1 26.4-19.4 48.8-20.2 72-1.3 39.4 14.7 70.8 50.1 98.4 7.2 5.7 27.5 16.2 42.2 22.1 9.2 3.6 13.8 7.9 14.8 14 2.6 15.4 7.4 26.6 13.1 30.1 2.8 1.8 4.4 2 9.1 1.5 3.1-.3 5.7-.5 5.7-.6v-21.3c0-24.8 1.2-32.9 6.1-42.5 4.5-8.7 7.8-11.2 15.2-11.9 9.7-.9 15.1 3.3 18.8 14.5 2.1 6.2 2.2 8 1.8 24.7-.3 9.9-.6 22.5-.7 28l-.2 10 3 1.4c4.2 2.1 11.4 1.7 16.4-.8l4.3-2.2-.6-5.7c-.4-3.1-.8-7.3-1.1-9.2-.2-1.9-.7-5.8-1.1-8.5-1-8-1.1-26.2-.2-32.4 1.1-7.4 5-15.1 9-18.1 4.9-3.6 14.1-3.5 19.5.3 6.8 4.7 11.2 15.2 12.9 30.4.9 7.9.9 29.6.1 36.5-.7 5.5.6 6.8 6.7 6.8 4.7 0 7.9-1.3 11-4.7 4.1-4.4 6.2-10.9 10.2-32.1.2-1.2 1.1-2.2 1.9-2.2 3.3 0 31.7-10.9 41-15.7 7.6-4 9-4.8 9.5-5.3.3-.3 1.6-1.1 3-1.8 8.9-4.6 27.3-21.3 35.2-31.9 7.1-9.7 15.9-27.2 17.4-34.6.2-1 .6-2.7.9-3.7.6-1.9 1.2-4.7 2-9 3.5-20.5 1.6-43.4-5.7-67.4-8.3-27.5-22.4-50.5-43.7-71.5-10.2-10-28.8-24.9-32.3-25.8-1-.3-1.8-.9-1.8-1.3 0-.5-6.4-4-14.2-7.8-14.2-7-27.4-12-39.8-14.9-9.2-2.1-9.9-2.2-15.5-2.9-2.7-.3-5.7-.8-6.5-1.1-1.6-.6-42.6-1.4-43.2-.8zM194 81.4c16.6 3.2 33.7 15.1 42.6 29.7 2.9 4.9 8.7 18.4 8.5 19.9-.1.3.2 2.7.6 5.5.8 5.9.8 7.9-.1 16.6-2.3 23.9-20 45.5-44.3 54-7.1 2.5-23.5 3.5-31.5 2-31.2-5.8-54.2-34.1-53.2-65.5.2-4.4.5-9 .7-10.1 3.3-14.4 8.9-24.8 18.7-34.5 9.6-9.6 22.9-16.1 37-18.2 3.6-.6 16.9-.1 21 .6zm160.7 1.7c11.1 3.4 18.1 7.7 26.8 16.4 14 14 20.3 30.3 19.1 49.5-.6 10.7-2.1 16.3-6.7 25.3-9.1 18.2-25.8 30.8-45.7 34.7-8.5 1.7-23.9.7-32.2-2-35.7-11.8-54.1-51.6-39.9-86.5 6.6-16.1 21.1-30.3 37-36.1 12.4-4.5 29.4-5 41.6-1.3z"/><path d="M77.3 273.1c-11 2-19.5 10.8-20.6 21.4-.6 5.8 1.6 13.4 6.2 20.8l4 6.5-8.1 2.6c-16.7 5.4-22.7 12.7-21.5 26.4 1.1 12.2 8.5 22.5 18.3 25.2 6.8 1.9 15.1.6 26.7-4.2 8.5-3.4 11.5-4.2 18-4.4 8.6-.3 8.2-.4 29.7 7.7 8.5 3.2 22 8.1 30 10.9 8 2.8 15.2 5.4 16 5.7.8.4 1.9.5 2.3.4.5-.1.6.3.2.9-.3.5-1.1 1-1.6 1-2 0-39.6 13.3-46.4 16.5-8 3.7-15.7 5.6-24 6.2-10.5.7-16.7-.7-27.8-6.3-16.4-8.3-32.1-3.6-38.7 11.4-2.4 5.3-3.6 14.4-2.6 19.4 1.4 7.7 10.8 14.9 24.9 18.9 2.6.7 4.6 1.6 4.4 1.9-.2.3-2 4.1-4.1 8.4-4.7 9.8-5.3 18.1-1.8 25.9 3 6.8 6.4 9.5 15.5 12.6 18.3 6.1 29.4-.6 37.8-22.9 3.4-9 6.3-13.3 11.1-16.4 2.8-1.8 30.9-12.2 86.6-32.2 7-2.5 15.2-5.4 18.2-6.5 3-1.1 6-2.1 6.5-2.3.6-.1 3.5-1 6.5-2.1 6.8-2.3 16.9-2.6 23.5-.7 5.2 1.5 31.5 10.6 35 12.2 1.1.5 5.8 2.2 10.5 3.9 27.3 9.5 60.5 21.6 66.7 24.3 4 1.7 9 4.6 11.3 6.5 4.3 3.7 8.6 11 9.5 16.3 1.3 7.2 9.5 16.7 17.8 20.6 15.6 7.2 37-4.8 38.2-21.5.4-6.4-1.6-13-6.1-20.4-2-3.2-3.4-6.1-3.1-6.3.3-.3 3.1-1.2 6.3-2.1 15.9-4.1 23.3-12.9 22.1-26.1-1.4-15-10.9-25.7-23.4-26.5-6.9-.5-12.7 1-21.8 5.3-12.9 6.1-17.6 8-20 8-2.5 0-7.3-1.7-46.7-16.3-15.3-5.6-27.8-10.5-27.8-10.8 0-1.3 47.5-18.7 60.4-22.1 14.8-3.9 29.9-2.7 43.4 3.4 3.5 1.5 7.9 2.8 9.8 2.8 6.9 0 17.2-7.2 23-16 3.4-5.1 4.4-16.1 1.9-21.3-3.1-6.6-9.6-11.5-21.3-16.3-3.2-1.3-5.7-2.7-5.6-3.1 0-.4 1.2-3.4 2.7-6.6 3.3-7.1 4.5-17.7 2.8-25.8-.9-4.3-2-6.4-4.9-9.1-4.6-4.4-9.2-5.9-17.7-5.9-16.6 0-25.8 8.1-32.5 28.6-3.8 11.6-6.5 13.5-32.1 22.8-11.7 4.4-22.3 8.3-23.4 8.8-1.1.5-14.4 5.4-29.5 10.9-15.1 5.6-28.4 10.5-29.5 11-1.1.4-6 2.3-11 4-9.7 3.4-15.7 4.2-22 2.8-4.3-.9-4.4-1-49.2-17.2-16.1-5.8-29.5-10.6-29.9-10.6-.3 0-2-.6-3.7-1.4-3.4-1.5-24.6-8.9-28.7-10.1-6.1-1.8-15.3-7-18-10.4-1.7-1.9-3.7-5.6-4.6-8.1-5.3-14.8-13.7-26.3-21.6-29.4-4.9-2-10.8-2.6-16.5-1.5z"/></svg>
|
After Width: | Height: | Size: 3.4 KiB |
19
yohoho/favicon/site.webmanifest
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"short_name": "",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/favicon/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/favicon/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
BIN
yohoho/fonts/nunito-bold.ttf
Normal file
BIN
yohoho/fonts/nunito-extrabold.ttf
Normal file
BIN
yohoho/fonts/nunito-regular.ttf
Normal file
BIN
yohoho/img/01g.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
yohoho/img/02g.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
yohoho/img/03g.jpg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
yohoho/img/04g.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
yohoho/img/05g.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
216
yohoho/img/apple-store.svg
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="livetype"
|
||||||
|
width="134.50961"
|
||||||
|
height="40.00013"
|
||||||
|
viewBox="0 0 134.50961 40.00013"
|
||||||
|
version="1.1"
|
||||||
|
sodipodi:docname="apple-store.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata
|
||||||
|
id="metadata71">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title>Download_on_the_App_Store_Badge_US-UK_RGB_blk_4SVG_092917</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs69" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1720"
|
||||||
|
inkscape:window-height="1373"
|
||||||
|
id="namedview67"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:zoom="4.0063688"
|
||||||
|
inkscape:cx="100.2982"
|
||||||
|
inkscape:cy="12.109584"
|
||||||
|
inkscape:window-x="1711"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="g33" />
|
||||||
|
<title
|
||||||
|
id="title2">Download_on_the_App_Store_Badge_US-UK_RGB_blk_4SVG_092917</title>
|
||||||
|
<g
|
||||||
|
id="g64"
|
||||||
|
transform="translate(7.4226063,1.3e-4)">
|
||||||
|
<g
|
||||||
|
id="g33">
|
||||||
|
<g
|
||||||
|
id="g8"
|
||||||
|
transform="matrix(1.1240574,0,0,1,-7.4226063,0)">
|
||||||
|
<path
|
||||||
|
d="M 110.13477,0 H 9.53468 C 9.16798,0 8.80568,0 8.43995,0.002 8.1338,0.004 7.83009,0.00981 7.521,0.0147 a 13.21476,13.21476 0 0 0 -2.0039,0.17671 6.66509,6.66509 0 0 0 -1.90088,0.627 6.43779,6.43779 0 0 0 -1.61865,1.17866 6.25844,6.25844 0 0 0 -1.17822,1.62109 6.60119,6.60119 0 0 0 -0.625,1.90332 12.993,12.993 0 0 0 -0.1792,2.002 C 0.00587,7.83008 0.00489,8.1377 0,8.44434 V 31.5586 c 0.00489,0.3105 0.00587,0.6113 0.01515,0.9219 a 12.99232,12.99232 0 0 0 0.1792,2.0019 6.58756,6.58756 0 0 0 0.625,1.9043 6.20778,6.20778 0 0 0 1.17822,1.6143 6.27445,6.27445 0 0 0 1.61865,1.1787 6.70082,6.70082 0 0 0 1.90088,0.6308 13.45514,13.45514 0 0 0 2.0039,0.1768 C 7.83009,39.9941 8.1338,39.998 8.43995,39.998 8.80567,40 9.168,40 9.53468,40 h 100.60009 c 0.3594,0 0.7246,0 1.084,-0.002 0.3047,0 0.6172,-0.0039 0.9219,-0.0107 a 13.279,13.279 0 0 0 2,-0.1768 6.80432,6.80432 0 0 0 1.9082,-0.6308 6.27742,6.27742 0 0 0 1.6172,-1.1787 6.39482,6.39482 0 0 0 1.1816,-1.6143 6.60413,6.60413 0 0 0 0.6191,-1.9043 13.50643,13.50643 0 0 0 0.1856,-2.0019 c 0.004,-0.3106 0.004,-0.6114 0.004,-0.9219 0.008,-0.3633 0.008,-0.7246 0.008,-1.0938 V 9.53613 c 0,-0.36621 0,-0.72949 -0.008,-1.09179 0,-0.30664 0,-0.61426 -0.004,-0.9209 a 13.5071,13.5071 0 0 0 -0.1856,-2.002 6.6177,6.6177 0 0 0 -0.6191,-1.90332 6.46619,6.46619 0 0 0 -2.7988,-2.7998 6.76754,6.76754 0 0 0 -1.9082,-0.627 13.04394,13.04394 0 0 0 -2,-0.17676 c -0.3047,-0.00488 -0.6172,-0.01074 -0.9219,-0.01269 -0.3594,-0.002 -0.7246,-0.002 -1.084,-0.002 z"
|
||||||
|
style="fill:#a6a6a6"
|
||||||
|
id="path4"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 8.44483,39.125 c -0.30468,0 -0.602,-0.0039 -0.90429,-0.0107 A 12.68714,12.68714 0 0 1 5.6714,38.9512 5.88381,5.88381 0 0 1 4.01466,38.4033 5.40573,5.40573 0 0 1 2.61766,37.3867 5.32082,5.32082 0 0 1 1.59715,35.9902 5.72186,5.72186 0 0 1 1.05415,34.333 12.41351,12.41351 0 0 1 0.88765,32.458 C 0.88131,32.2471 0.87301,31.5449 0.87301,31.5449 V 8.44434 c 0,0 0.00884,-0.69141 0.01469,-0.89454 A 12.37039,12.37039 0 0 1 1.05323,5.67773 5.7555,5.7555 0 0 1 1.59669,4.01563 5.37349,5.37349 0 0 1 2.61183,2.61768 5.56543,5.56543 0 0 1 4.01417,1.59521 5.82309,5.82309 0 0 1 5.66749,1.05127 12.58589,12.58589 0 0 1 7.543,0.88721 L 8.44532,0.875 h 102.76855 l 0.9131,0.0127 a 12.38493,12.38493 0 0 1 1.8584,0.16259 5.93833,5.93833 0 0 1 1.6709,0.54785 5.59374,5.59374 0 0 1 2.415,2.41993 5.76267,5.76267 0 0 1 0.5352,1.64892 12.995,12.995 0 0 1 0.1738,1.88721 c 0.003,0.2832 0.003,0.5874 0.003,0.89014 0.008,0.375 0.008,0.73193 0.008,1.09179 V 30.4648 c 0,0.3633 0,0.7178 -0.008,1.0752 0,0.3252 0,0.6231 -0.004,0.9297 a 12.73126,12.73126 0 0 1 -0.1709,1.8535 5.739,5.739 0 0 1 -0.54,1.67 5.48029,5.48029 0 0 1 -1.0156,1.3857 5.4129,5.4129 0 0 1 -1.3994,1.0225 5.86168,5.86168 0 0 1 -1.668,0.5498 12.54218,12.54218 0 0 1 -1.8692,0.1631 c -0.2929,0.0068 -0.5996,0.0107 -0.8974,0.0107 l -1.084,0.002 z"
|
||||||
|
id="path6"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="_Group_"
|
||||||
|
data-name="<Group>">
|
||||||
|
<g
|
||||||
|
id="_Group_2"
|
||||||
|
data-name="<Group>">
|
||||||
|
<g
|
||||||
|
id="_Group_3"
|
||||||
|
data-name="<Group>">
|
||||||
|
<path
|
||||||
|
id="_Path_"
|
||||||
|
data-name="<Path>"
|
||||||
|
d="m 24.76888,20.30068 a 4.94881,4.94881 0 0 1 2.35656,-4.15206 5.06566,5.06566 0 0 0 -3.99116,-2.15768 c -1.67924,-0.17626 -3.30719,1.00483 -4.1629,1.00483 -0.87227,0 -2.18977,-0.98733 -3.6085,-0.95814 a 5.31529,5.31529 0 0 0 -4.47292,2.72787 c -1.934,3.34842 -0.49141,8.26947 1.3612,10.97608 0.9269,1.32535 2.01018,2.8058 3.42763,2.7533 1.38706,-0.05753 1.9051,-0.88448 3.5794,-0.88448 1.65876,0 2.14479,0.88448 3.591,0.8511 1.48838,-0.02416 2.42613,-1.33124 3.32051,-2.66914 a 10.962,10.962 0 0 0 1.51842,-3.09251 4.78205,4.78205 0 0 1 -2.91924,-4.39917 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="_Path_2"
|
||||||
|
data-name="<Path>"
|
||||||
|
d="m 22.03725,12.21089 a 4.87248,4.87248 0 0 0 1.11452,-3.49062 4.95746,4.95746 0 0 0 -3.20758,1.65961 4.63634,4.63634 0 0 0 -1.14371,3.36139 4.09905,4.09905 0 0 0 3.23677,-1.53038 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g30">
|
||||||
|
<path
|
||||||
|
d="m 42.30227,27.13965 h -4.7334 l -1.13672,3.35645 h -2.00488 l 4.4834,-12.418 h 2.083 l 4.4834,12.418 H 43.438 Z M 38.0591,25.59082 h 3.752 l -1.84961,-5.44727 h -0.05176 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path14"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 55.15969,25.96973 c 0,2.81348 -1.50586,4.62109 -3.77832,4.62109 a 3.0693,3.0693 0 0 1 -2.84863,-1.584 h -0.043 v 4.48438 h -1.8584 V 21.44238 h 1.79886 v 1.50586 h 0.03418 a 3.21162,3.21162 0 0 1 2.88281,-1.60059 c 2.29781,10e-6 3.8125,1.81641 3.8125,4.62208 z m -1.91016,0 c 0,-1.833 -0.94727,-3.03809 -2.39258,-3.03809 -1.41992,0 -2.375,1.23047 -2.375,3.03809 0,1.82422 0.95508,3.0459 2.375,3.0459 1.44532,0 2.39258,-1.19629 2.39258,-3.0459 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path16"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 65.12453,25.96973 c 0,2.81348 -1.50586,4.62109 -3.77832,4.62109 a 3.0693,3.0693 0 0 1 -2.84863,-1.584 h -0.043 v 4.48438 h -1.8584 V 21.44238 H 58.395 v 1.50586 h 0.03418 A 3.21162,3.21162 0 0 1 61.312,21.34766 c 2.29788,0 3.81253,1.8164 3.81253,4.62207 z m -1.91016,0 c 0,-1.833 -0.94727,-3.03809 -2.39258,-3.03809 -1.41992,0 -2.375,1.23047 -2.375,3.03809 0,1.82422 0.95508,3.0459 2.375,3.0459 1.44532,0 2.39259,-1.19629 2.39259,-3.0459 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path18"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 71.71047,27.03613 c 0.1377,1.23145 1.334,2.04 2.96875,2.04 1.56641,0 2.69336,-0.80859 2.69336,-1.91895 0,-0.96387 -0.67969,-1.541 -2.28906,-1.93652 l -1.60937,-0.3877 c -2.28027,-0.55078 -3.33887,-1.61719 -3.33887,-3.34766 0,-2.14258 1.86719,-3.61426 4.51855,-3.61426 2.624,0 4.42285,1.47168 4.4834,3.61426 h -1.876 c -0.1123,-1.23926 -1.13672,-1.9873 -2.63379,-1.9873 -1.49707,0 -2.52148,0.75684 -2.52148,1.8584 0,0.87793 0.6543,1.39453 2.25488,1.79 l 1.36816,0.33594 c 2.54785,0.60254 3.60645,1.626 3.60645,3.44238 0,2.32324 -1.85059,3.77832 -4.79395,3.77832 -2.75391,0 -4.61328,-1.4209 -4.7334,-3.667 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path20"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 83.34621,19.2998 v 2.14258 h 1.72168 v 1.47168 h -1.72168 v 4.99121 c 0,0.77539 0.34473,1.13672 1.10156,1.13672 a 5.80752,5.80752 0 0 0 0.61133,-0.043 v 1.46289 a 5.10351,5.10351 0 0 1 -1.03223,0.08594 c -1.833,0 -2.54785,-0.68848 -2.54785,-2.44434 v -5.18942 h -1.3164 V 21.44238 H 81.479 V 19.2998 Z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path22"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 86.065,25.96973 c 0,-2.84863 1.67773,-4.63867 4.29395,-4.63867 2.625,0 4.29492,1.79 4.29492,4.63867 0,2.85645 -1.66113,4.63867 -4.29492,4.63867 -2.63286,0 -4.29395,-1.78223 -4.29395,-4.63867 z m 6.69531,0 c 0,-1.9541 -0.89551,-3.10742 -2.40137,-3.10742 -1.50586,0 -2.40039,1.16211 -2.40039,3.10742 0,1.96191 0.89453,3.10645 2.40039,3.10645 1.50586,0 2.40133,-1.14454 2.40133,-3.10645 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path24"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 96.18606,21.44238 h 1.77246 v 1.541 h 0.043 a 2.1594,2.1594 0 0 1 2.17773,-1.63574 2.86616,2.86616 0 0 1 0.63672,0.06934 v 1.73828 a 2.59794,2.59794 0 0 0 -0.835,-0.1123 1.87264,1.87264 0 0 0 -1.93652,2.083 v 5.37012 h -1.8584 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path26"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 109.3843,27.83691 c -0.25,1.64355 -1.85059,2.77148 -3.89844,2.77148 -2.63379,0 -4.26855,-1.76465 -4.26855,-4.5957 0,-2.83984 1.64355,-4.68164 4.19043,-4.68164 2.50488,0 4.08008,1.7207 4.08008,4.46582 v 0.63672 h -6.39453 v 0.1123 a 2.358,2.358 0 0 0 2.43555,2.56445 2.04834,2.04834 0 0 0 2.09082,-1.27344 z m -6.28223,-2.70215 h 4.52637 a 2.1773,2.1773 0 0 0 -2.2207,-2.29785 2.292,2.292 0 0 0 -2.30567,2.29786 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path28"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="_Group_4"
|
||||||
|
data-name="<Group>">
|
||||||
|
<g
|
||||||
|
id="g61">
|
||||||
|
<path
|
||||||
|
d="m 37.82619,8.731 a 2.63964,2.63964 0 0 1 2.80762,2.96484 c 0,1.90625 -1.03027,3.002 -2.80762,3.002 H 35.67092 V 8.731 Z m -1.22852,5.123 h 1.125 a 1.87588,1.87588 0 0 0 1.96777,-2.146 1.881,1.881 0 0 0 -1.96777,-2.13379 h -1.125 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path35"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 41.68068,12.44434 a 2.13323,2.13323 0 1 1 4.24707,0 2.13358,2.13358 0 1 1 -4.24707,0 z m 3.333,0 c 0,-0.97607 -0.43848,-1.54687 -1.208,-1.54687 -0.77246,0 -1.207,0.5708 -1.207,1.54688 0,0.98389 0.43457,1.55029 1.207,1.55029 0.76954,-10e-6 1.20801,-0.57032 1.20801,-1.5503 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path37"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 51.57326,14.69775 h -0.92187 l -0.93066,-3.31641 h -0.07031 l -0.92676,3.31641 h -0.91309 l -1.24121,-4.50293 h 0.90137 l 0.80664,3.436 h 0.06641 l 0.92578,-3.436 h 0.85254 l 0.92578,3.436 h 0.07031 l 0.80273,-3.436 h 0.88867 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path39"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 53.85354,10.19482 H 54.709 v 0.71533 h 0.06641 a 1.348,1.348 0 0 1 1.34375,-0.80225 1.46456,1.46456 0 0 1 1.55859,1.6748 v 2.915 h -0.88867 v -2.69184 c 0,-0.72363 -0.31445,-1.0835 -0.97168,-1.0835 a 1.03294,1.03294 0 0 0 -1.0752,1.14111 v 2.63428 h -0.88867 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path41"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 59.09377,8.437 h 0.88867 v 6.26074 h -0.88867 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path43"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 61.21779,12.44434 a 2.13346,2.13346 0 1 1 4.24756,0 2.1338,2.1338 0 1 1 -4.24756,0 z m 3.333,0 c 0,-0.97607 -0.43848,-1.54687 -1.208,-1.54687 -0.77246,0 -1.207,0.5708 -1.207,1.54688 0,0.98389 0.43457,1.55029 1.207,1.55029 0.76953,-10e-6 1.20801,-0.57032 1.20801,-1.5503 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path45"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 66.4009,13.42432 c 0,-0.81055 0.60352,-1.27783 1.6748,-1.34424 l 1.21973,-0.07031 V 11.6211 c 0,-0.47559 -0.31445,-0.74414 -0.92187,-0.74414 -0.49609,0 -0.83984,0.18213 -0.93848,0.50049 h -0.86035 c 0.09082,-0.77344 0.81836,-1.26953 1.83984,-1.26953 1.12891,0 1.76563,0.562 1.76563,1.51318 v 3.07666 h -0.85547 v -0.63281 h -0.07031 a 1.515,1.515 0 0 1 -1.35254,0.707 1.36026,1.36026 0 0 1 -1.50098,-1.34763 z m 2.89453,-0.38477 v -0.37646 l -1.09961,0.07031 c -0.62012,0.0415 -0.90137,0.25244 -0.90137,0.64941 0,0.40527 0.35156,0.64111 0.835,0.64111 a 1.0615,1.0615 0 0 0 1.16598,-0.98437 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path47"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 71.34816,12.44434 c 0,-1.42285 0.73145,-2.32422 1.86914,-2.32422 a 1.484,1.484 0 0 1 1.38086,0.79 h 0.06641 V 8.437 h 0.88867 v 6.26074 h -0.85156 v -0.71143 h -0.07031 a 1.56284,1.56284 0 0 1 -1.41406,0.78564 c -1.14551,5e-5 -1.86915,-0.90134 -1.86915,-2.32761 z m 0.918,0 c 0,0.95508 0.4502,1.52979 1.20313,1.52979 0.749,0 1.21191,-0.583 1.21191,-1.52588 0,-0.93848 -0.46777,-1.52979 -1.21191,-1.52979 -0.74808,0 -1.20316,0.57861 -1.20316,1.52588 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path49"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 79.23,12.44434 a 2.13323,2.13323 0 1 1 4.24707,0 2.13358,2.13358 0 1 1 -4.24707,0 z m 3.333,0 c 0,-0.97607 -0.43848,-1.54687 -1.208,-1.54687 -0.77246,0 -1.207,0.5708 -1.207,1.54688 0,0.98389 0.43457,1.55029 1.207,1.55029 0.76953,-10e-6 1.208,-0.57032 1.208,-1.5503 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path51"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 84.66945,10.19482 h 0.85547 v 0.71533 h 0.06641 a 1.348,1.348 0 0 1 1.34375,-0.80225 1.46456,1.46456 0 0 1 1.55859,1.6748 v 2.915 H 87.605 v -2.69184 c 0,-0.72363 -0.31445,-1.0835 -0.97168,-1.0835 a 1.03294,1.03294 0 0 0 -1.0752,1.14111 v 2.63428 h -0.88867 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path53"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 93.51516,9.07373 v 1.1416 h 0.97559 v 0.74854 h -0.97559 v 2.31543 c 0,0.47168 0.19434,0.67822 0.63672,0.67822 a 2.96657,2.96657 0 0 0 0.33887,-0.02051 v 0.74023 a 2.9155,2.9155 0 0 1 -0.4834,0.04541 c -0.98828,0 -1.38184,-0.34766 -1.38184,-1.21582 v -2.543 h -0.71484 v -0.74854 h 0.71484 V 9.07373 Z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path55"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 95.70461,8.437 h 0.88086 v 2.48145 h 0.07031 a 1.3856,1.3856 0 0 1 1.373,-0.80664 1.48339,1.48339 0 0 1 1.55078,1.67871 v 2.90723 H 98.69 v -2.688 c 0,-0.71924 -0.335,-1.0835 -0.96289,-1.0835 a 1.05194,1.05194 0 0 0 -1.13379,1.1416 v 2.62988 h -0.88867 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path57"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 104.76125,13.48193 a 1.828,1.828 0 0 1 -1.95117,1.30273 2.04531,2.04531 0 0 1 -2.08008,-2.32421 2.07685,2.07685 0 0 1 2.07617,-2.35254 c 1.25293,0 2.00879,0.856 2.00879,2.27 V 12.688 h -3.17969 v 0.0498 a 1.1902,1.1902 0 0 0 1.19922,1.29 1.07934,1.07934 0 0 0 1.07129,-0.5459 z m -3.126,-1.45117 h 2.27441 a 1.08647,1.08647 0 0 0 -1.1084,-1.1665 1.15162,1.15162 0 0 0 -1.16599,1.1665 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path59"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 16 KiB |
BIN
yohoho/img/banner1024x512.jpg
Normal file
After Width: | Height: | Size: 466 KiB |
BIN
yohoho/img/banner1200x630.jpg
Normal file
After Width: | Height: | Size: 593 KiB |
BIN
yohoho/img/chest.png
Normal file
After Width: | Height: | Size: 23 KiB |
2
yohoho/img/close.svg
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 23.332 23.333" id="Capa_1" version="1.1" viewBox="0 0 23.332 23.333" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#888888"><path d="M16.043,11.667L22.609,5.1c0.963-0.963,0.963-2.539,0-3.502l-0.875-0.875c-0.963-0.964-2.539-0.964-3.502,0L11.666,7.29 L5.099,0.723c-0.962-0.963-2.538-0.963-3.501,0L0.722,1.598c-0.962,0.963-0.962,2.539,0,3.502l6.566,6.566l-6.566,6.567 c-0.962,0.963-0.962,2.539,0,3.501l0.876,0.875c0.963,0.963,2.539,0.963,3.501,0l6.567-6.565l6.566,6.565 c0.963,0.963,2.539,0.963,3.502,0l0.875-0.875c0.963-0.963,0.963-2.539,0-3.501L16.043,11.667z"/></svg>
|
After Width: | Height: | Size: 785 B |
BIN
yohoho/img/coins_m.png
Normal file
After Width: | Height: | Size: 37 KiB |
18
yohoho/img/flag.svg.raw
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 512 512" height="570" id="Layer_1" version="1.1" viewBox="0 0 780.44068 570" width="780.44067" xml:space="preserve">
|
||||||
|
<g id="g25101"><rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.20019162;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect816"
|
||||||
|
width="780.44067"
|
||||||
|
height="570"
|
||||||
|
x="5.8593753e-007"
|
||||||
|
y="-2.0385743e-007" /><path
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd;stroke-width:0.82113796"
|
||||||
|
d="m 397.30571,65.083161 c -7.64383,-0.08878 -15.43739,0.295098 -23.37355,1.138688 -60.4727,6.425404 -104.74739,36.565911 -127.62922,93.548771 -16.0902,40.06745 -15.80768,79.47775 16.1469,113.42771 15.11716,16.06226 34.20893,25.65531 54.62653,33.23523 3.23528,1.19969 6.8524,5.69017 7.39025,9.11432 3.32149,21.15743 10.12181,31.45648 23.18897,25.8514 1.51294,-0.40811 -7.73941,-62.50033 18.90076,-62.50033 26.64016,0 11.98077,54.9114 14.74649,64.05599 7.55614,3.96536 10.51275,3.85875 19.39763,-0.96547 1.53,-6.31125 -13.46067,-63.70157 13.44498,-63.70157 26.9057,0 17.65,62.3863 18.7219,62.61582 13.5364,4.42104 19.8902,-3.82466 23.1337,-30.6307 6.101,-2.04957 12.4728,-4.01902 18.7226,-6.31411 51.6906,-19.03808 79.1149,-58.51947 73.6634,-107.76311 -3.6869,-33.26841 -17.3997,-62.28274 -41.5782,-85.83298 -31.323,-30.505527 -68.2264,-44.800239 -109.50314,-45.279659 z m -68.76227,66.287649 c 29.65217,-1.4e-4 53.69004,24.03773 53.6899,53.6899 -7.4e-4,29.65155 -24.03835,53.68845 -53.6899,53.68832 -29.65155,1.5e-4 -53.68919,-24.03676 -53.68992,-53.68832 -1.4e-4,-29.65218 24.03774,-53.69005 53.68992,-53.6899 z m 127.80561,0 c 29.6522,-1.5e-4 53.69,24.03772 53.6899,53.6899 -8e-4,29.65157 -24.0383,53.68847 -53.6899,53.68832 -29.6509,-7.5e-4 -53.68756,-24.0374 -53.6883,-53.68832 -1.4e-4,-29.65155 24.0367,-53.68916 53.6883,-53.6899 z"
|
||||||
|
id="path2-2"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
/><path
|
||||||
|
d="m 234.40142,468.38004 c -20.04654,-4.48944 -26.73346,-11.38807 -24.93295,-24.86775 2.27779,-17.05893 17.93887,-26.5586 34.73411,-17.02207 15.8501,8.99873 28.46781,5.83156 42.93326,-0.33931 11.90412,-5.0707 24.38949,-8.7908 39.77648,-14.22917 -18.2555,-6.60657 -34.15758,-11.71131 -49.50202,-18.15152 -10.34935,-4.34768 -19.03525,-4.68889 -29.65397,0.43381 -19.25735,9.28133 -33.18408,3.92236 -37.46086,-12.09692 -4.13501,-15.49567 2.80709,-24.20991 23.79877,-28.65117 -1.9848,-3.25603 -3.88926,-6.12169 -5.53382,-9.1301 -5.6567,-10.35029 -3.86565,-20.66183 4.64067,-27.32984 8.07154,-6.32208 21.95101,-6.39297 29.11049,1.1578 4.59342,4.85522 8.8513,11.07806 10.51475,17.40582 2.47628,9.42404 7.63205,13.82275 16.54479,16.89447 31.04804,10.69906 61.73692,22.44156 92.76608,33.18881 4.80606,1.66346 11.20848,1.66724 15.99188,-0.0388 32.06877,-11.43627 63.84927,-23.67497 95.83787,-35.33428 6.6104,-2.4054 10.2973,-5.77012 12.4748,-12.98063 3.5548,-11.72548 8.876,-23.19484 23.7242,-24.55017 9.1112,-0.83268 18.4823,1.21828 21.6155,9.96655 2.4561,11.73877 1.1664,21.02641 -4.9809,29.78156 21.8564,7.37119 27.4943,15.07413 23.0379,30.51404 -4.2785,9.05382 -17.2286,19.3407 -25.3252,14.96545 -26.3825,-14.25658 -47.8054,-1.05385 -70.9237,6.51679 -5.6898,1.86286 -11.1858,4.31552 -19.2422,7.45813 21.8612,8.11881 41.2792,15.51929 60.891,22.36216 2.4054,0.83645 5.9875,-1.01131 8.7945,-2.16911 5.9687,-2.46588 11.5686,-6.0858 17.7121,-7.81258 14.044,-3.94505 24.6872,2.24094 28.3062,15.51929 3.7154,13.65831 -2.0737,22.89239 -17.007,27.03119 -1.9328,0.53873 -3.927,0.8563 -6.4279,1.38652 1.8808,3.0566 3.6728,5.69829 5.2039,8.4912 6.2711,11.44098 4.0689,21.89335 -5.9978,28.86381 -10.4864,7.26913 -22.4454,6.11444 -30.6511,-3.34488 -2.6209,-3.02133 -5.6189,-6.55837 -6.3089,-10.25956 -2.6605,-14.21971 -12.9957,-18.53902 -25.018,-22.64097 -28.0198,-9.54598 -55.5509,-20.53329 -83.59815,-29.97531 -6.20112,-2.08783 -14.33315,-1.96967 -20.54747,0.13706 -30.70308,10.45427 -60.98557,22.13531 -91.59883,32.85894 -7.55645,2.64169 -11.88995,6.53096 -14.41348,14.35299 -3.53485,10.98165 -9.10176,22.66366 -22.26292,22.83473 -7.39104,0.0983 -18.14436,-3.67196 -21.55878,-9.91081 -6.19618,-11.32172 -1.33316,-22.54109 4.5367,-31.28622 z"
|
||||||
|
id="path4-4"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
style="clip-rule:evenodd;fill:#ffffff;fill-rule:evenodd;stroke-width:0.94514608"
|
||||||
|
/></g></svg>
|
After Width: | Height: | Size: 4.6 KiB |
BIN
yohoho/img/google-store.png
Normal file
After Width: | Height: | Size: 19 KiB |
71
yohoho/img/logout.svg
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="white"
|
||||||
|
id="svg6"
|
||||||
|
sodipodi:docname="logout.svg"
|
||||||
|
inkscape:version="0.92.1 r15371">
|
||||||
|
<metadata
|
||||||
|
id="metadata12">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs10" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1280"
|
||||||
|
inkscape:window-height="1002"
|
||||||
|
id="namedview8"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="9.8333333"
|
||||||
|
inkscape:cx="12"
|
||||||
|
inkscape:cy="12"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="48"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg6" />
|
||||||
|
<g
|
||||||
|
fill="none"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
id="miu"
|
||||||
|
stroke="none"
|
||||||
|
stroke-width="1"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<g
|
||||||
|
id="Artboard-1"
|
||||||
|
transform="translate(-395.000000, -407.000000)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<g
|
||||||
|
id="slice"
|
||||||
|
transform="translate(215.000000, 119.000000)"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
<path
|
||||||
|
d="M396,408 L396,430 L411,430 L411,424 L409,424 L409,428 L398,428 L398,410 L409,410 L409,414 L411,414 L411,408 L396,408 Z M411.636039,415.464466 L413.050253,414.050253 L418,419 L413.050253,423.949747 L411.636039,422.535534 L414.170485,420.001088 L403.000499,420.001088 L403.000499,418.00265 L414.174223,418.00265 L411.636039,415.464466 Z"
|
||||||
|
fill="#000000"
|
||||||
|
id="common-logout-signout-exit-glyph"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
BIN
yohoho/img/minimap.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
yohoho/img/mobile-hint-1.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
yohoho/img/mobile-hint-2.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
yohoho/img/safari-add-homescreen.png
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
yohoho/img/safari-share.png
Normal file
After Width: | Height: | Size: 15 KiB |
1
yohoho/img/spritesheet4-.json
Normal file
BIN
yohoho/img/spritesheet4-.png
Normal file
After Width: | Height: | Size: 904 KiB |
1
yohoho/img/spritesheet4-2.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"frames":{"chest":{"frame":{"x":4,"y":400,"w":256,"h":158},"trimmed":false,"spriteSourceSize":{"w":256,"h":158,"x":0,"y":0},"sourceSize":{"w":256,"h":158},"rotated":false},"crown":{"frame":{"x":858,"y":10,"w":128,"h":111},"trimmed":false,"spriteSourceSize":{"w":128,"h":111,"x":0,"y":0},"sourceSize":{"w":128,"h":111},"rotated":false},"house1-b":{"frame":{"x":1032,"y":652,"w":512,"h":523},"trimmed":false,"spriteSourceSize":{"w":512,"h":523,"x":0,"y":0},"sourceSize":{"w":512,"h":523},"rotated":false},"house1-t":{"frame":{"x":1020,"y":125,"w":512,"h":523},"trimmed":false,"spriteSourceSize":{"w":512,"h":523,"x":0,"y":0},"sourceSize":{"w":512,"h":523},"rotated":false},"p11c":{"frame":{"x":363,"y":23,"w":369,"h":373},"trimmed":false,"spriteSourceSize":{"w":369,"h":373,"x":0,"y":0},"sourceSize":{"w":369,"h":373},"rotated":false},"p12c":{"frame":{"x":1556,"y":893,"w":460,"h":310},"trimmed":false,"spriteSourceSize":{"w":460,"h":310,"x":0,"y":0},"sourceSize":{"w":460,"h":310},"rotated":false},"p15c":{"frame":{"x":1032,"y":1179,"w":520,"h":398},"trimmed":false,"spriteSourceSize":{"w":520,"h":398,"x":0,"y":0},"sourceSize":{"w":520,"h":398},"rotated":false},"p17c":{"frame":{"x":1032,"y":1581,"w":580,"h":462},"trimmed":false,"spriteSourceSize":{"w":580,"h":462,"x":0,"y":0},"sourceSize":{"w":580,"h":462},"rotated":false},"p17w":{"frame":{"x":736,"y":4,"w":118,"h":554},"trimmed":false,"spriteSourceSize":{"w":118,"h":554,"x":0,"y":0},"sourceSize":{"w":118,"h":554},"rotated":false},"p20w":{"frame":{"x":4,"y":564,"w":210,"h":485},"trimmed":false,"spriteSourceSize":{"w":210,"h":485,"x":0,"y":0},"sourceSize":{"w":210,"h":485},"rotated":false},"p25c":{"frame":{"x":1616,"y":1620,"w":426,"h":423},"trimmed":false,"spriteSourceSize":{"w":426,"h":423,"x":0,"y":0},"sourceSize":{"w":426,"h":423},"rotated":false},"p27c":{"frame":{"x":1536,"y":25,"w":378,"h":371},"trimmed":false,"spriteSourceSize":{"w":378,"h":371,"x":0,"y":0},"sourceSize":{"w":378,"h":371},"rotated":false},"p30c":{"frame":{"x":1616,"y":1207,"w":424,"h":409},"trimmed":false,"spriteSourceSize":{"w":424,"h":409,"x":0,"y":0},"sourceSize":{"w":424,"h":409},"rotated":false},"p32c":{"frame":{"x":1548,"y":400,"w":450,"h":489},"trimmed":false,"spriteSourceSize":{"w":450,"h":489,"x":0,"y":0},"sourceSize":{"w":450,"h":489},"rotated":false},"p34w":{"frame":{"x":736,"y":562,"w":280,"h":487},"trimmed":false,"spriteSourceSize":{"w":280,"h":487,"x":0,"y":0},"sourceSize":{"w":280,"h":487},"rotated":false},"p8c":{"frame":{"x":4,"y":22,"w":355,"h":374},"trimmed":false,"spriteSourceSize":{"w":355,"h":374,"x":0,"y":0},"sourceSize":{"w":355,"h":374},"rotated":false},"p8w":{"frame":{"x":858,"y":131,"w":158,"h":427},"trimmed":false,"spriteSourceSize":{"w":158,"h":427,"x":0,"y":0},"sourceSize":{"w":158,"h":427},"rotated":false},"palms3-2":{"frame":{"x":218,"y":586,"w":512,"h":463},"trimmed":false,"spriteSourceSize":{"w":512,"h":463,"x":0,"y":0},"sourceSize":{"w":512,"h":463},"rotated":false},"pet-4":{"frame":{"x":264,"y":415,"w":128,"h":167},"trimmed":false,"spriteSourceSize":{"w":128,"h":167,"x":0,"y":0},"sourceSize":{"w":128,"h":167},"rotated":false},"pet-5":{"frame":{"x":396,"y":415,"w":128,"h":167},"trimmed":false,"spriteSourceSize":{"w":128,"h":167,"x":0,"y":0},"sourceSize":{"w":128,"h":167},"rotated":false},"pet-6":{"frame":{"x":528,"y":415,"w":128,"h":167},"trimmed":false,"spriteSourceSize":{"w":128,"h":167,"x":0,"y":0},"sourceSize":{"w":128,"h":167},"rotated":false},"temple":{"frame":{"x":4,"y":1053,"w":1024,"h":990},"trimmed":false,"spriteSourceSize":{"w":1024,"h":990,"x":0,"y":0},"sourceSize":{"w":1024,"h":990},"rotated":false}},"meta":{"image":"spritesheet4-2.png","size":{"w":2048,"h":2048},"scale":1}}
|
BIN
yohoho/img/spritesheet4-2.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
1
yohoho/img/spritesheet4-3.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"frames":{"bush-1":{"frame":{"x":1478,"y":521,"w":256,"h":251},"trimmed":false,"spriteSourceSize":{"w":256,"h":251,"x":0,"y":0},"sourceSize":{"w":256,"h":251},"rotated":false},"bush-2":{"frame":{"x":1738,"y":521,"w":256,"h":251},"trimmed":false,"spriteSourceSize":{"w":256,"h":251,"x":0,"y":0},"sourceSize":{"w":256,"h":251},"rotated":false},"p12w":{"frame":{"x":1910,"y":68,"w":125,"h":449},"trimmed":false,"spriteSourceSize":{"w":125,"h":449,"x":0,"y":0},"sourceSize":{"w":125,"h":449},"rotated":false},"p16c":{"frame":{"x":520,"y":54,"w":406,"h":329},"trimmed":false,"spriteSourceSize":{"w":406,"h":329,"x":0,"y":0},"sourceSize":{"w":406,"h":329},"rotated":false},"p19c":{"frame":{"x":974,"y":660,"w":370,"h":428},"trimmed":false,"spriteSourceSize":{"w":370,"h":428,"x":0,"y":0},"sourceSize":{"w":370,"h":428},"rotated":false},"p23w":{"frame":{"x":1348,"y":507,"w":126,"h":581},"trimmed":false,"spriteSourceSize":{"w":126,"h":581,"x":0,"y":0},"sourceSize":{"w":126,"h":581},"rotated":false},"p26c":{"frame":{"x":520,"y":387,"w":434,"h":339},"trimmed":false,"spriteSourceSize":{"w":434,"h":339,"x":0,"y":0},"sourceSize":{"w":434,"h":339},"rotated":false},"p27w":{"frame":{"x":958,"y":129,"w":254,"h":527},"trimmed":false,"spriteSourceSize":{"w":254,"h":527,"x":0,"y":0},"sourceSize":{"w":254,"h":527},"rotated":false},"p29w":{"frame":{"x":1216,"y":175,"w":128,"h":481},"trimmed":false,"spriteSourceSize":{"w":128,"h":481,"x":0,"y":0},"sourceSize":{"w":128,"h":481},"rotated":false},"p30w":{"frame":{"x":1348,"y":41,"w":274,"h":462},"trimmed":false,"spriteSourceSize":{"w":274,"h":462,"x":0,"y":0},"sourceSize":{"w":274,"h":462},"rotated":false},"p31c":{"frame":{"x":520,"y":730,"w":450,"h":443},"trimmed":false,"spriteSourceSize":{"w":450,"h":443,"x":0,"y":0},"sourceSize":{"w":450,"h":443},"rotated":false},"p32w":{"frame":{"x":1626,"y":68,"w":280,"h":449},"trimmed":false,"spriteSourceSize":{"w":280,"h":449,"x":0,"y":0},"sourceSize":{"w":280,"h":449},"rotated":false},"p33c":{"frame":{"x":1036,"y":1092,"w":450,"h":459},"trimmed":false,"spriteSourceSize":{"w":450,"h":459,"x":0,"y":0},"sourceSize":{"w":450,"h":459},"rotated":false},"p34c":{"frame":{"x":1490,"y":776,"w":450,"h":433},"trimmed":false,"spriteSourceSize":{"w":450,"h":433,"x":0,"y":0},"sourceSize":{"w":450,"h":433},"rotated":false},"p35c":{"frame":{"x":1036,"y":1555,"w":450,"h":489},"trimmed":false,"spriteSourceSize":{"w":450,"h":489,"x":0,"y":0},"sourceSize":{"w":450,"h":489},"rotated":false},"palms-1":{"frame":{"x":1490,"y":1213,"w":512,"h":411},"trimmed":false,"spriteSourceSize":{"w":512,"h":411,"x":0,"y":0},"sourceSize":{"w":512,"h":411},"rotated":false},"palms-2":{"frame":{"x":4,"y":27,"w":512,"h":488},"trimmed":false,"spriteSourceSize":{"w":512,"h":488,"x":0,"y":0},"sourceSize":{"w":512,"h":488},"rotated":false},"palms2-1":{"frame":{"x":520,"y":1177,"w":512,"h":418},"trimmed":false,"spriteSourceSize":{"w":512,"h":418,"x":0,"y":0},"sourceSize":{"w":512,"h":418},"rotated":false},"palms2-2":{"frame":{"x":4,"y":519,"w":512,"h":493},"trimmed":false,"spriteSourceSize":{"w":512,"h":493,"x":0,"y":0},"sourceSize":{"w":512,"h":493},"rotated":false},"palms3-1":{"frame":{"x":1490,"y":1628,"w":512,"h":416},"trimmed":false,"spriteSourceSize":{"w":512,"h":416,"x":0,"y":0},"sourceSize":{"w":512,"h":416},"rotated":false},"pet-7":{"frame":{"x":1216,"y":4,"w":128,"h":167},"trimmed":false,"spriteSourceSize":{"w":128,"h":167,"x":0,"y":0},"sourceSize":{"w":128,"h":167},"rotated":false},"ruins-1":{"frame":{"x":4,"y":1532,"w":512,"h":512},"trimmed":false,"spriteSourceSize":{"w":512,"h":512,"x":0,"y":0},"sourceSize":{"w":512,"h":512},"rotated":false},"ruins-2":{"frame":{"x":4,"y":1016,"w":512,"h":512},"trimmed":false,"spriteSourceSize":{"w":512,"h":512,"x":0,"y":0},"sourceSize":{"w":512,"h":512},"rotated":false},"ruins-3":{"frame":{"x":520,"y":1599,"w":512,"h":445},"trimmed":false,"spriteSourceSize":{"w":512,"h":445,"x":0,"y":0},"sourceSize":{"w":512,"h":445},"rotated":false}},"meta":{"image":"spritesheet4-3.png","size":{"w":2048,"h":2048},"scale":1}}
|
BIN
yohoho/img/spritesheet4-3.png
Normal file
After Width: | Height: | Size: 695 KiB |
1
yohoho/img/spritesheet4-4.json
Normal file
BIN
yohoho/img/spritesheet4-4.png
Normal file
After Width: | Height: | Size: 551 KiB |
83
yohoho/img/video.svg
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="70.992828mm"
|
||||||
|
height="56.158253mm"
|
||||||
|
viewBox="0 0 70.992828 56.158253"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="video.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.8"
|
||||||
|
inkscape:cx="110.58593"
|
||||||
|
inkscape:cy="85.796018"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1718"
|
||||||
|
inkscape:window-height="1363"
|
||||||
|
inkscape:window-x="1712"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-38.443455,-145.62622)">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#949494;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect815-1"
|
||||||
|
width="66.992828"
|
||||||
|
height="48.75893"
|
||||||
|
x="40.443455"
|
||||||
|
y="151.02554"
|
||||||
|
ry="7.0158277" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#c3c3c3;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
|
||||||
|
id="rect815"
|
||||||
|
width="68.882706"
|
||||||
|
height="50.149342"
|
||||||
|
x="39.498516"
|
||||||
|
y="146.62622"
|
||||||
|
ry="7.2158909" />
|
||||||
|
<path
|
||||||
|
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#35c500;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||||
|
d="m 63.481265,155.8605 c -1.934161,-0.0457 -3.526497,1.53069 -3.526585,3.4914 v 24.72232 c 3.19e-4,2.6881 2.8715,4.36814 5.168781,3.02443 l 21.125248,-12.36116 c 2.297081,-1.34433 2.297081,-4.70454 0,-6.04888 L 65.123461,156.32746 c -0.500144,-0.29264 -1.064837,-0.45322 -1.642196,-0.46696 z"
|
||||||
|
id="path817"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.1 KiB |
399
yohoho/index.html
Normal file
9324
yohoho/ndata
Normal file
167
yohoho/privacypolicy.html
Normal file
@ -0,0 +1,167 @@
|
|||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<link rel="canonical" href="https://yohoho.io/privacypolicy.html" />
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
<style>
|
||||||
|
#ppBody {
|
||||||
|
font-size: 11pt;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ppHeader {
|
||||||
|
font-family: verdana;
|
||||||
|
font-size: 21pt;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ppConsistencies {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="ppHeader">YoHoHo.io Privacy Policy</div>
|
||||||
|
<div id="ppBody">
|
||||||
|
<div class="ppConsistencies">
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links text-center">Information Collection</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links text-center">Information Usage</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links text-center">Information Protection</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links text-center">Cookie Usage</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links text-center">3rd Party Disclosure</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links text-center">3rd Party Links</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2"></div>
|
||||||
|
</div>
|
||||||
|
<div style="clear:both;height:10px;"></div>
|
||||||
|
<div class="ppConsistencies">
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="col-12 quick-links2 gen-text-center">Google AdSense</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="col-12 quick-links2 gen-text-center"> Fair Information Practices
|
||||||
|
<div class="col-8 gen-text-left gen-xs-text-center" style="font-size:12px;position:relative;left:20px;">Fair information<br> Practices</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="col-12 quick-links2 gen-text-center coppa-pad"> COPPA </div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="col-12 quick-links2 quick4 gen-text-center caloppa-pad"> CalOPPA </div>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<div class="quick-links2 gen-text-center">Our Contact Information<br></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style="clear:both;height:10px;"></div>
|
||||||
|
<div class="innerText">This privacy policy has been compiled to better serve those who are concerned with how their 'Personally Identifiable Information' (PII) is being used online. PII, as described in US privacy law and information security, is information that can be used on its own or with other information to identify, contact, or locate a single person, or to identify an individual in context. Please read our privacy policy carefully to get a clear understanding of how we collect, use, protect or otherwise handle your Personally Identifiable Information in accordance with our website.<br></div><span id="infoCo"></span><br>
|
||||||
|
|
||||||
|
<h1>Information collection</h1>
|
||||||
|
<div class="grayText"><strong>What information do we collect?</strong></div><br>
|
||||||
|
<div class="innerText">- IP Address, Browser technical configuration, Links clicked, Actions in the game (win, lose, progress...) ; when you navigate on the site</div><br>
|
||||||
|
<div class="innerText">- Social account identifier, email and public name ; only when you login with Google or Facebook</div><br>
|
||||||
|
<div class="grayText"><strong>How do we use your information? </strong></div><br>
|
||||||
|
<div class="innerText"> We may use the information we collect from you when you register, make a purchase, sign up for our newsletter, respond to a survey or marketing communication, surf the website, or use certain other site features in the following ways:<br><br></div>
|
||||||
|
<div class="innerText"> <strong>-</strong> Registration and authentication.</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> To improve our website in order to better serve you.</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> To send periodic emails regarding your order or news about our games and other products.</div><br>
|
||||||
|
<div class="blueText"><strong>System logs and maintenance</strong></div><br>
|
||||||
|
<div class="innerText">For operation and maintenance purposes, this Application and any third-party services may collect files that record interaction with this Application (System logs) or use for this purpose other Personal Data (such as IP Address).</div>
|
||||||
|
|
||||||
|
<h1 id="cookies">Cookies</h1>
|
||||||
|
<div class="grayText"><strong>Do we use 'cookies'?</strong></div><br>
|
||||||
|
<div class="innerText">Yes. Cookies are small files that a site or its service provider transfers to your computer's hard drive through your Web browser (if you allow) that enables the site's or service provider's systems to recognize your browser and capture and remember certain information. For instance, we use cookies to help us remember and process the items in your shopping cart. They are also used to help us understand your preferences based on previous or current site activity, which enables us to provide you with improved services. We also use cookies to help us compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future.</div>
|
||||||
|
<div class="innerText"><br><strong>We use cookies to:</strong></div>
|
||||||
|
<div class="innerText"> <strong>- Required:</strong> Manage your game session and save your game settings for future visits, such as skin selected or popups dismissed</div>
|
||||||
|
<div class="innerText"> <strong>- Social plugins:</strong> These cookies allow you to sign in with third-party services such as Google and Facebook</div>
|
||||||
|
<div class="innerText"> <strong>- Analytics:</strong> These cookies allow us to count visits and traffic sources, so we can measure and improve the performance of our site. They help us know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies, we will not know when you have visited our site.</div>
|
||||||
|
<div class="innerText"> <strong>- Targeting Cookies:</strong> These cookies are set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant ads on other sites. They work by uniquely identifying your browser and device. If you do not allow these cookies, you will not experience our targeted advertising across different websites.</div>
|
||||||
|
|
||||||
|
|
||||||
|
<h1>Third-party providers</h1>
|
||||||
|
<div class="blueText"><strong>Google</strong></div><br>
|
||||||
|
<div class="innerText">Google's advertising requirements can be summed up by Google's Advertising Principles. They are put in place to provide a positive experience for users. https://support.google.com/adwordspolicy/answer/1316548?hl=en <br><br></div>
|
||||||
|
<div class="innerText">We use Google AdSense Advertising on our website.</div>
|
||||||
|
<div class="innerText"><br>Google, as a third-party vendor, uses cookies to serve ads on our site. Google's use of the DART cookie enables it to serve ads to our users based on previous visits to our site and other sites on the Internet. Users may opt-out of the use of the DART cookie by visiting the Google Ad and Content Network privacy policy.<br></div>
|
||||||
|
<div class="innerText"><br><strong>We have implemented the following:</strong></div>
|
||||||
|
<div class="innerText"> <strong>-</strong> Remarketing with Google AdSense</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> Demographics and Interests Reporting</div><br>
|
||||||
|
<div class="innerText">We, along with third-party vendors such as Google use first-party cookies (such as the Google Analytics cookies) and third-party cookies (such as the DoubleClick cookie) or other third-party identifiers together to compile data regarding user interactions with ad impressions and other ad service functions as they relate to our website. </div>
|
||||||
|
<div class="innerText"><br><strong>Opting out:</strong><br>Users can set preferences for how Google advertises to you using the Google Ad Settings page. Alternatively, you can opt out by visiting the Network Advertising Initiative Opt Out page or by using the Google Analytics Opt Out Browser add on.</div><span id="calOppa"></span><br>
|
||||||
|
|
||||||
|
<div class="blueText"><strong>Facebook</strong></div><br>
|
||||||
|
<div class="innerText">This Application may ask for some Facebook permissions allowing it to perform actions with the User's Facebook account and to retrieve information, including Personal Data, from it. This service allows this Application to connect with the User's account on the Facebook social network, provided by Facebook Inc. For more information about the following permissions, refer to the <a href="https://developers.facebook.com/docs/authentication/permissions/">Facebook permissions documentation</a> and to the <a href="https://www.facebook.com/about/privacy/">Facebook privacy policy</a>.<br><br></div>
|
||||||
|
<div class="innerText">The permissions asked are the following:</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> Basic information: By default, this includes certain User's Data such as id, name, picture, gender, and their locale. Certain connections of the User, such as the Friends, are also available. If the User has made more of their Data public, more information will be available.</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> About Me: Provides access to the 'About Me' section of the profile.</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> Contact email: Access the User's contact email address.</div><br>
|
||||||
|
<div class="blueText"><strong>Advertising</strong></div><br>
|
||||||
|
<div class="innerText">We use third-party advertising companies to serve ads when you visit our Web site. These companies may use information (not including your name, address, email address or telephone number) about your visits to this and other Web sites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, <a href="http://www.networkadvertising.org/managing/opt_out.asp" target="_blank">click here</a><br><br></div>
|
||||||
|
<div class="blueText"><strong>Disclaimer about the Ad technology providers</strong></div><br>
|
||||||
|
<div class="innerText">We may use third-party Service Providers to show advertisements to you to help support and maintain our website. Depending on the ads that are served, your data (not including your name, address, email address or telephone number) may be shared with any of the ad technology provider listed below. Ad technology providers (including Google, Ad Exchanges, SSPs, DSPs, ad networks, bidders and vendors) use your data for example, to show you personalised ads or to report on conversions. In the overview below you can find links to information on how the technology providers use your data. Please refer to their respective privacy policies for further details</div><br>
|
||||||
|
<div class="innerText">- ADINPLAY: http://adinplay.com/privacy-and-cookies-policy/ section "Advertising"</div>
|
||||||
|
<div class="innerText">- CURSE: https://www.curse.com/ section "Privacy Policy"</div>
|
||||||
|
<div class="innerText">- LIFESTREET: https://www.lifestreet.com/privacy/</div><br>
|
||||||
|
<div class="grayText"><strong>Third-party disclosure</strong></div><br>
|
||||||
|
<div class="innerText">We do not sell, trade, or otherwise transfer to outside parties your Personally Identifiable Information.</div><span id="trLi"></span><br>
|
||||||
|
<div class="grayText"><strong>Third-party links</strong></div><br>
|
||||||
|
<div class="innerText">If you click on an advertisement or a link to purchase or learn more about a listing you may be directed to a contact form, website or phone number of a third party. Any information you may provide to such third parties will be subject to their Privacy Policy.</div><span id="gooAd"></span>
|
||||||
|
<div class="grayText">Doorbell</div>
|
||||||
|
<div class="innerText">We rely on doorbell.io for the contact form that requests your email, please refer to their privacy policy at https://doorbell.io/privacy-policy</div>
|
||||||
|
|
||||||
|
<h1>CalOPPA, COPPA, CAN SPAM Act</h1>
|
||||||
|
<div class="blueText"><strong>California Online Privacy Protection Act</strong></div><br>
|
||||||
|
<div class="innerText">CalOPPA is the first state law in the nation to require commercial websites and online services to post a privacy policy. The law's reach stretches well beyond California to require any person or company in the United States (and conceivably the world) that operates websites collecting Personally Identifiable Information from California consumers to post a conspicuous privacy policy on its website stating exactly the information being collected and those individuals or companies with whom it is being shared. - See more at: http://consumercal.org/california-online-privacy-protection-act-caloppa/#sthash.0FdRbT51.dpuf<br></div>
|
||||||
|
<div class="innerText"><br><strong>According to CalOPPA, we agree to the following:</strong><br></div>
|
||||||
|
<div class="innerText">Users can visit our site anonymously.</div>
|
||||||
|
<div class="innerText">Once this privacy policy is created, we will add a link to it on our home page or as a minimum, on the first significant page after entering our website.<br></div>
|
||||||
|
<div class="innerText">Our Privacy Policy link includes the word 'Privacy' and can easily be found on the page specified above.</div>
|
||||||
|
<div class="innerText"><br>You will be notified of any Privacy Policy changes:</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> On our Privacy Policy Page<br></div>
|
||||||
|
<div class="innerText">Can change your personal information:</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> By emailing us</div>
|
||||||
|
<div class="innerText"><br><strong>How does our site handle Do Not Track signals?</strong><br></div>
|
||||||
|
<div class="innerText">This Application does not support "Do Not Track" requests. To determine whether any of the third-party services it uses honor the "Do Not Track" requests, please read their privacy policies.</div>
|
||||||
|
<div class="innerText"><br><strong>Does our site allow third-party behavioral tracking?</strong><br></div>
|
||||||
|
<div class="innerText">It's also important to note that we allow third-party behavioral tracking</div><span id="coppAct"></span><br>
|
||||||
|
<div class="blueText"><strong>COPPA (Children Online Privacy Protection Act)</strong></div><br>
|
||||||
|
<div class="innerText">When it comes to the collection of personal information from children under the age of 13 years old, the Children's Online Privacy Protection Act (COPPA) puts parents in control. The Federal Trade Commission, United States' consumer protection agency, enforces the COPPA Rule, which spells out what operators of websites and online services must do to protect children's privacy and safety online.<br><br></div>
|
||||||
|
<div class="innerText">We do not specifically market to children under the age of 13 years old.</div>
|
||||||
|
<span id="ftcFip"></span><br>
|
||||||
|
<div class="blueText"><strong>Fair Information Practices</strong></div><br>
|
||||||
|
<div class="innerText">The Fair Information Practices Principles form the backbone of privacy law in the United States and the concepts they include have played a significant role in the development of data protection laws around the globe. Understanding the Fair Information Practice Principles and how they should be implemented is critical to comply with the various privacy laws that protect personal information.<br><br></div>
|
||||||
|
<div class="innerText"><strong>In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:</strong></div>
|
||||||
|
<div class="innerText">We will notify the users via in-site notification</div>
|
||||||
|
<div class="innerText"> <strong>-</strong> Within 30 business days</div>
|
||||||
|
<div class="innerText"><br>We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.</div><span id="canSpam"></span><br>
|
||||||
|
<div class="blueText"><strong>CAN SPAM Act</strong></div><br>
|
||||||
|
<div class="innerText">The CAN-SPAM Act is a law that sets the rules for commercial email, establishes requirements for commercial messages, gives recipients the right to have emails stopped from being sent to them, and spells out tough penalties for violations.<br><br></div>
|
||||||
|
<div class="innerText"><strong>We collect your email address in order to:</strong> send news about our games</div>
|
||||||
|
<div class="innerText"><br><strong>To be in accordance with CANSPAM, we agree to the following:</strong></div>
|
||||||
|
<div class="innerText"><strong><br>If at any time you would like to unsubscribe from receiving future emails, you can email us at</strong> dev@yohoho.io</div> and we will promptly remove you from <strong>ALL</strong> correspondence.
|
||||||
|
</div><br><span id="ourCon"></span>
|
||||||
|
|
||||||
|
<h1>Contact information</h1>
|
||||||
|
<div class="blueText"><strong>Contacting Us</strong></div><br>
|
||||||
|
<div class="innerText">If there are any questions regarding this privacy policy, for data access requests, and for data deletion requests: you may contact us using the information below.<br><br></div>
|
||||||
|
<div class="innerText">dev@yohoho.io</div>
|
||||||
|
<div class="innerText"><br>Last update on 2021-10-13</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|