commit 53d0c557d0f84512f1d2a01e4a38aeb4d375e619 Author: Innotex Date: Tue Feb 3 23:09:01 2026 +0100 Default configuration serveur Build NG RED diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..37aa8d4 --- /dev/null +++ b/.env.example @@ -0,0 +1,15 @@ +# Configuration Docker NationsGlory +# Copier ce fichier vers .env et ajuster les valeurs + +# Mot de passe RCON (généré automatiquement si non défini) +RCON_PASSWORD=minecraft + +# Port Minecraft +SERVER_PORT=25565 + +# Port RCON +RCON_PORT=25575 + +# Mémoire allouée +MEMORY=2G +INIT_MEMORY=1G diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..58ca1d6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,85 @@ +# ============================================ +# NationsGlory 1.6.4 - Fichiers à ignorer +# ============================================ + +# === DONNÉES DE JEU (Ne pas versionner) === +world/ +world_*/ +*.dat +*.dat_old +usercache.json +usernamecache.json + +# === LOGS & CRASH REPORTS === +logs/ +crash-reports/ +*.log +*.log.* +*.lck +debug/ +hs_err_*.log +core.* + +# === FICHIERS UTILISATEUR === +ops.txt +banned-ips.txt +banned-players.txt +white-list.txt +permissions.yml + +# === FICHIERS GÉNÉRÉS AUTOMATIQUEMENT === +server.properties +bukkit.yml +spigot.yml +mcpc.yml +help.yml +wepif.yml +.rcon-cli.env +.rcon-cli.yaml + +# === DONNÉES TEMPORAIRES === +cache/ +ngcore_cache/ +customnpcs/ + +# === FICHIERS JAR === +# Ignorer tous les .jar SAUF ceux dans mods/ et plugins/ ET mcpc.jar +*.jar +!mods/*.jar +!plugins/*.jar +!mcpc.jar + +# === LIBRARIES (Seront téléchargées) === +libraries/ + +# === DONNÉES PLUGINS === +plugins/Essentials/userdata/ +plugins/Essentials/worth.yml +plugins/Essentials/spawn.yml +plugins/WorldEdit/sessions/ +plugins/PluginMetrics/ + +# === BACKUPS === +*_backup*/ +backup/ +*.zip +*.tar.gz + +# === DOCKER & ENV === +.env +data/ + +# === FICHIERS TEMPORAIRES === +*.tmp +*.swp +*.swo +*~ +.DS_Store +Thumbs.db + +# === DOCUMENTATION TEMPORAIRE === +SERVER_STATUS.md +ISSUES_FIXED.md +SOLUTION_FINALE.md +TEST_COMMANDS.txt +WORLDEDIT_USAGE.md diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md new file mode 100644 index 0000000..31479ac --- /dev/null +++ b/DEPLOYMENT.md @@ -0,0 +1,538 @@ +# 🚀 Guide de Déploiement - Serveur NationsGlory sur /srv/minecraft + +## Architecture de production + +``` +/srv/minecraft/ +├── proxy/ # Velocity/BungeeCord (futur) +├── survie/ # Serveur survie vanilla (futur) +├── moddé/ # ← Serveur NationsGlory MCPC+ 1.6.4 +│ ├── docker-compose.yml +│ ├── .env +│ ├── data/ # Données serveur +│ │ ├── mcpc.jar +│ │ ├── server.properties +│ │ ├── ops.txt +│ │ └── ... +│ ├── mods/ # 13 mods Forge +│ ├── plugins/ # WorldEdit + Essentials +│ ├── config/ # Configurations mods +│ ├── libraries/ # Dépendances Maven +│ └── world/ # Monde Minecraft +└── backups/ # Sauvegardes automatiques +``` + +## 📋 Prérequis + +### Sur la machine de production + +1. **Docker & Docker Compose** +```bash +# Installer Docker +curl -fsSL https://get.docker.com | sh + +# Installer Docker Compose +sudo apt install docker-compose + +# Ajouter l'utilisateur au groupe docker +sudo usermod -aG docker $USER +``` + +2. **Permissions sur /srv** +```bash +sudo mkdir -p /srv/minecraft +sudo chown $USER:$USER /srv/minecraft +``` + +3. **Ports disponibles** +- Port 25565 (Minecraft) +- Ou configurer un autre port dans docker-compose.yml + +## 🚚 Migration du serveur + +### Méthode 1 : Script automatique (recommandé) + +```bash +# Sur la machine de développement +cd "/home/innotex/Documents/Projet/Serveur NationsGlory" + +# Rendre le script exécutable +chmod +x migrate-to-srv.sh + +# Exécuter la migration (nécessite sudo) +sudo ./migrate-to-srv.sh +``` + +Le script va : +- ✅ Créer la structure /srv/minecraft +- ✅ Copier tous les fichiers nécessaires +- ✅ Configurer les permissions +- ✅ Créer un backup de sécurité +- ✅ Installer docker-compose.yml + +### Méthode 2 : Migration manuelle + +```bash +# 1. Créer la structure +sudo mkdir -p /srv/minecraft/moddé/{data,mods,plugins,config,libraries,backups} + +# 2. Copier les fichiers +sudo cp -r server-final/mcpc.jar /srv/minecraft/moddé/data/ +sudo cp -r server-final/mods/* /srv/minecraft/moddé/mods/ +sudo cp -r server-final/plugins/* /srv/minecraft/moddé/plugins/ +sudo cp -r server-final/config/* /srv/minecraft/moddé/config/ +sudo cp -r server-final/libraries/* /srv/minecraft/moddé/libraries/ +sudo cp server-final/server.properties /srv/minecraft/moddé/data/ +sudo cp server-final/ops.txt /srv/minecraft/moddé/data/ + +# 3. Copier la configuration Docker +sudo cp docker-compose.yml /srv/minecraft/moddé/ +sudo cp .env.example /srv/minecraft/moddé/.env + +# 4. Permissions +sudo chown -R 1000:1000 /srv/minecraft/moddé +sudo chmod -R 755 /srv/minecraft/moddé +``` + +### Méthode 3 : Transfert vers machine distante + +```bash +# Créer une archive +cd "/home/innotex/Documents/Projet/Serveur NationsGlory" +tar -czf nationsglory-server.tar.gz server-final/ docker-compose.yml .env.example + +# Transférer via SCP +scp nationsglory-server.tar.gz user@serveur-prod:/tmp/ + +# Sur le serveur de production +ssh user@serveur-prod +cd /srv/minecraft +sudo mkdir -p moddé +cd moddé +sudo tar -xzf /tmp/nationsglory-server.tar.gz +sudo mv server-final/* data/ +sudo chown -R 1000:1000 . +``` + +## 🐳 Utilisation avec Docker + +### Démarrer le serveur + +```bash +cd /srv/minecraft/moddé + +# Premier démarrage (création du monde) +docker-compose up -d + +# Voir les logs en temps réel +docker-compose logs -f + +# Attendre le message "Done!" dans les logs +``` + +### Commandes Docker Compose + +```bash +# Démarrer +docker-compose up -d + +# Arrêter proprement +docker-compose down + +# Redémarrer +docker-compose restart + +# Voir les logs +docker-compose logs -f + +# Voir l'état +docker-compose ps + +# Exécuter une commande dans le conteneur +docker-compose exec nationsglory-modded rcon-cli + +# Entrer dans le conteneur +docker-compose exec nationsglory-modded bash +``` + +### Commandes serveur via RCON + +```bash +# Se connecter à la console serveur +docker-compose exec nationsglory-modded rcon-cli + +# Puis taper vos commandes : +> op +> stop +> save-all +> list +``` + +## ⚙️ Configuration + +### Modifier les paramètres (.env) + +```bash +cd /srv/minecraft/moddé +nano .env +``` + +Variables importantes : +```env +MEMORY=2G # RAM maximale +INIT_MEMORY=1G # RAM initiale +MINECRAFT_PORT=25565 # Port d'écoute +MAX_PLAYERS=20 # Joueurs max +VIEW_DISTANCE=10 # Distance de vue +GAMEMODE=creative # Mode par défaut +LEVEL_TYPE=FLAT # Type de monde +``` + +Après modification : +```bash +docker-compose down +docker-compose up -d +``` + +### Modifier server.properties + +```bash +cd /srv/minecraft/moddé +nano data/server.properties +``` + +Puis redémarrer : +```bash +docker-compose restart +``` + +## 📊 Monitoring et logs + +### Logs en temps réel + +```bash +# Tous les logs +docker-compose logs -f + +# Seulement les nouvelles lignes +docker-compose logs -f --tail=100 + +# Filtrer par mot-clé +docker-compose logs -f | grep ERROR +``` + +### Fichiers de logs + +Les logs sont dans `/srv/minecraft/moddé/data/logs/` : +```bash +tail -f /srv/minecraft/moddé/data/logs/latest.log +``` + +### Statistiques conteneur + +```bash +# Utilisation ressources +docker stats mc-nationsglory + +# Processus dans le conteneur +docker top mc-nationsglory +``` + +## 💾 Sauvegardes + +### Backup manuel + +```bash +cd /srv/minecraft/moddé + +# Arrêter le serveur +docker-compose down + +# Créer le backup +sudo tar -czf /srv/minecraft/backups/world-$(date +%Y%m%d-%H%M).tar.gz \ + data/world/ \ + data/ops.txt \ + data/white-list.txt \ + data/banned-*.txt + +# Redémarrer +docker-compose up -d +``` + +### Script de backup automatique + +Créer `/srv/minecraft/backup.sh` : +```bash +#!/bin/bash +cd /srv/minecraft/moddé + +# Sauvegarder le monde via RCON +docker-compose exec -T nationsglory-modded rcon-cli save-all flush +sleep 5 + +# Créer l'archive +tar -czf /srv/minecraft/backups/auto-$(date +%Y%m%d-%H%M).tar.gz \ + data/world/ data/ops.txt data/white-list.txt + +# Supprimer les backups > 7 jours +find /srv/minecraft/backups/ -name "auto-*.tar.gz" -mtime +7 -delete + +echo "Backup terminé: $(date)" +``` + +Automatiser avec cron : +```bash +sudo crontab -e + +# Backup quotidien à 3h du matin +0 3 * * * /srv/minecraft/backup.sh >> /var/log/minecraft-backup.log 2>&1 +``` + +### Restaurer un backup + +```bash +cd /srv/minecraft/moddé + +# Arrêter le serveur +docker-compose down + +# Sauvegarder le monde actuel +mv data/world data/world.old + +# Restaurer +tar -xzf /srv/minecraft/backups/world-YYYYMMDD-HHMM.tar.gz + +# Redémarrer +docker-compose up -d +``` + +## 🔒 Sécurité + +### Firewall (UFW) + +```bash +# Autoriser le port Minecraft +sudo ufw allow 25565/tcp + +# Vérifier +sudo ufw status +``` + +### Whitelist (liste blanche) + +```bash +# Activer la whitelist +docker-compose exec nationsglory-modded rcon-cli whitelist on + +# Ajouter un joueur +docker-compose exec nationsglory-modded rcon-cli whitelist add + +# Liste des joueurs autorisés +docker-compose exec nationsglory-modded rcon-cli whitelist list +``` + +### Bannir un joueur + +```bash +# Bannir +docker-compose exec nationsglory-modded rcon-cli ban + +# Débannir +docker-compose exec nationsglory-modded rcon-cli pardon +``` + +## 🔧 Maintenance + +### Mettre à jour l'image Docker + +```bash +cd /srv/minecraft/moddé + +# Arrêter le serveur +docker-compose down + +# Récupérer la dernière image +docker-compose pull + +# Redémarrer +docker-compose up -d +``` + +### Nettoyer les logs + +```bash +cd /srv/minecraft/moddé + +# Supprimer les anciens logs +rm -f data/logs/*.log.gz +rm -f data/*.log.* +``` + +### Réinitialiser le monde + +⚠️ **ATTENTION** : Supprime toutes les constructions ! + +```bash +cd /srv/minecraft/moddé + +# Backup avant suppression +tar -czf /srv/minecraft/backups/world-before-reset-$(date +%Y%m%d).tar.gz data/world/ + +# Arrêter le serveur +docker-compose down + +# Supprimer le monde +sudo rm -rf data/world/ + +# Redémarrer (nouveau monde généré) +docker-compose up -d +``` + +## 🌐 Intégration avec Traefik (reverse proxy) + +Si vous utilisez Traefik pour gérer vos services : + +### docker-compose.yml modifié + +```yaml +services: + nationsglory-modded: + # ... configuration existante ... + + labels: + # Traefik + - "traefik.enable=true" + - "traefik.tcp.routers.minecraft.rule=HostSNI(`*`)" + - "traefik.tcp.routers.minecraft.entrypoints=minecraft" + - "traefik.tcp.routers.minecraft.service=minecraft" + - "traefik.tcp.services.minecraft.loadbalancer.server.port=25565" + + networks: + - traefik-network + - minecraft-network + +networks: + traefik-network: + external: true + minecraft-network: + driver: bridge +``` + +## 📈 Optimisation des performances + +### Augmenter la RAM + +Dans `.env` : +```env +MEMORY=4G +INIT_MEMORY=2G +``` + +Puis : +```bash +docker-compose down +docker-compose up -d +``` + +### Limiter la view-distance + +Dans `data/server.properties` : +```properties +view-distance=8 # Au lieu de 10 +``` + +### Optimiser le GC (Garbage Collector) + +Dans `docker-compose.yml`, section `environment` : +```yaml +JVM_OPTS: "-XX:+UseG1GC -XX:MaxGCPauseMillis=50" +``` + +## 🐛 Dépannage + +### Le serveur ne démarre pas + +```bash +# Voir les logs complets +docker-compose logs + +# Vérifier les permissions +ls -la /srv/minecraft/moddé/data/ + +# Vérifier que mcpc.jar existe +ls -lh /srv/minecraft/moddé/data/mcpc.jar +``` + +### Erreur de mémoire + +```bash +# Augmenter la RAM dans .env +MEMORY=3G + +# Redémarrer +docker-compose restart +``` + +### Port déjà utilisé + +```bash +# Vérifier quel processus utilise le port +sudo netstat -tuln | grep 25565 + +# Changer le port dans .env +MINECRAFT_PORT=25566 +``` + +### Problème de permissions + +```bash +# Réparer les permissions +cd /srv/minecraft/moddé +sudo chown -R 1000:1000 . +sudo chmod -R 755 . +``` + +## 📞 Support + +### Logs importants + +- **Logs Docker** : `docker-compose logs` +- **Logs serveur** : `/srv/minecraft/moddé/data/logs/latest.log` +- **Crash reports** : `/srv/minecraft/moddé/data/crash-reports/` + +### Commandes de diagnostic + +```bash +# État du conteneur +docker ps + +# Statistiques +docker stats mc-nationsglory + +# Espace disque +du -sh /srv/minecraft/moddé/ + +# Processus Java +docker-compose exec nationsglory-modded ps aux | grep java +``` + +## 🎯 Checklist de déploiement + +- [ ] Docker et Docker Compose installés +- [ ] Structure /srv/minecraft créée +- [ ] Fichiers migrés dans /srv/minecraft/moddé +- [ ] Permissions configurées (1000:1000) +- [ ] Fichier .env configuré +- [ ] Port 25565 ouvert dans le firewall +- [ ] docker-compose up -d exécuté +- [ ] Logs vérifiés (pas d'erreurs) +- [ ] Connexion testée depuis un client +- [ ] OP donné au premier joueur +- [ ] Backup automatique configuré +- [ ] Documentation consultée + +--- + +**Version** : MCPC+ 1.6.4-R2.1-forge965-B251 +**Image Docker** : itzg/minecraft-server:java8 +**Production ready** : ✅ diff --git a/DEPLOYMENT_CHECKLIST.md b/DEPLOYMENT_CHECKLIST.md new file mode 100644 index 0000000..e875945 --- /dev/null +++ b/DEPLOYMENT_CHECKLIST.md @@ -0,0 +1,171 @@ +# ✅ Checklist de Déploiement NationsGlory 1.6.4 + +## 📋 Avant de pousser sur Git + +- [ ] `.gitignore` est présent et configuré +- [ ] `.env.example` est créé (sans données sensibles) +- [ ] `mcpc.jar` n'est PAS dans Git (vérifié avec `git status`) +- [ ] `world/` n'est PAS dans Git +- [ ] Les logs sont supprimés +- [ ] Documentation de déploiement existe (`DEPLOY_README.md`) + +## 🚀 Fichiers versionnés (24 MB total) + +### Fichiers de configuration Docker +- `docker-compose.yml` - Configuration du conteneur +- `.gitignore` - Fichiers à ignorer +- `.env.example` - Template de configuration + +### Mods Forge (20 MB) +- `mods/aquatweaksng.jar` +- `mods/banners-1.0.jar` +- `mods/chisel-1.0.jar` +- `mods/customnpc-1.0.jar` +- `mods/flansmods-4.1.1.jar` +- ... et 15 autres mods + +### Plugins Bukkit (3.3 MB) +- `plugins/Essentials.jar` +- `plugins/EssentialsChat.jar` +- `plugins/EssentialsAntiBuild.jar` +- `plugins/EssentialsProtect.jar` +- `plugins/EssentialsSpawn.jar` +- `plugins/worldedit-5.6.jar` + +### Configuration (488 KB) +- `config/` - Tous les fichiers de configuration des mods/plugins + +### Données statiques +- `Flan/` - Packs de contenu Flans Mod +- `customnpcs/` - Configuration NPC + +## 🔗 Après git clone + +### Fichiers à télécharger manuellement + +1. **mcpc.jar** (29 MB) + ```bash + # Télécharger depuis SourceForge + wget https://sourceforge.net/projects/mcportcentral/files/MCPC%2B/1.6.4/mcpc-plus-1.6.4-R2.1-forge965-B251.jar + mv mcpc-plus-1.6.4-R2.1-forge965-B251.jar mcpc.jar + ``` + +2. **Créer .env** (optionnel) + ```bash + cp .env.example .env + ``` + +3. **Démarrer le serveur** + ```bash + docker-compose up -d + ``` + +## 📊 Statistique du dépôt + +``` +Taille totale versionnée: ~24 MB +- Mods: 20 MB +- Plugins: 3.3 MB +- Config: 488 KB +- Autres: 212 KB + +Fichiers ignorés (NON versionnés): +- mcpc.jar: 29 MB +- world/: Variable (100+ MB) +- logs/: Variable +- libraries/: Auto-téléchargées +``` + +## 🔄 Workflow de mise à jour + +### Pour ajouter un mod +```bash +# 1. Copier le mod +cp nouveau-mod.jar mods/ + +# 2. Commiter +git add mods/nouveau-mod.jar +git commit -m "Add: nouveau-mod" +git push + +# 3. Déployer sur serveur +git pull +docker-compose restart +``` + +### Pour modifier la configuration +```bash +# 1. Éditer la config +nano config/MonMod.cfg + +# 2. Commiter +git add config/MonMod.cfg +git commit -m "Config: Ajuste les paramètres de MonMod" +git push + +# 3. Déployer +git pull +docker-compose restart +``` + +## ⚠️ À NE JAMAIS versionner + +- ❌ `world/` - Données du monde (trop gros, spécifiques) +- ❌ `mcpc.jar` - Fichier serveur (29 MB, disponible en download) +- ❌ `logs/` - Logs de serveur +- ❌ `crash-reports/` - Rapports de crash +- ❌ `.env` - Configuration locale (contient RCON password) +- ❌ `ops.txt`, `banned-*.txt` - Données utilisateur +- ❌ `server.properties` - Généré automatiquement +- ❌ `libraries/` - Auto-téléchargées par Docker + +## 🎯 Commandes rapides + +```bash +# Vérifier ce qui sera commité +git status + +# Voir les fichiers ignorés +git status --ignored + +# Taille du dépôt +du -sh .git + +# Lister les fichiers trackés +git ls-files + +# Vérifier qu'un fichier est bien ignoré +git check-ignore -v +``` + +## 🆘 En cas de problème + +### J'ai accidentellement commité mcpc.jar +```bash +git rm --cached mcpc.jar +git commit -m "Remove mcpc.jar from git" +git push --force +``` + +### J'ai commité world/ +```bash +git rm -r --cached world/ +git commit -m "Remove world data" +git push --force +``` + +### Le dépôt est trop gros +```bash +# Vérifier la taille +git count-objects -vH + +# Nettoyer l'historique (attention, destructif!) +git filter-branch --tree-filter 'rm -rf world/' HEAD +git push --force +``` + +--- + +**Date de création:** 3 février 2026 +**Version:** 1.0 - NationsGlory 1.6.4 +**Taille cible du dépôt:** < 30 MB diff --git a/DEPLOY_README.md b/DEPLOY_README.md new file mode 100644 index 0000000..e767759 --- /dev/null +++ b/DEPLOY_README.md @@ -0,0 +1,188 @@ +# 🚀 Déploiement Serveur NationsGlory 1.6.4 + +## Prérequis + +- Docker & Docker Compose installés +- Minimum 4GB RAM +- Port 25565 ouvert +- Git installé + +## 📦 Installation rapide (TOUT INCLUS) + +```bash +# 1. Cloner le dépôt (inclut mcpc.jar) +git clone nationsglory-server +cd nationsglory-server + +# 2. Configurer (optionnel) +cp .env.example .env + +# 3. Démarrer le serveur +docker-compose up -d + +# 4. Vérifier les logs +docker logs -f mc-nationsglory | sed -u '/^>/d' +``` + +**C'est tout!** Le serveur est maintenant accessible sur le port 25565. + +## 📁 Structure du projet + +``` +nationsglory-server/ +├── docker-compose.yml # Configuration Docker +├── .env.example # Template de configuration +├── .gitignore # Fichiers ignorés par Git +│ +├── mcpc.jar # Serveur MCPC+ (INCLUS dans Git - 29 MB) +│ +├── mods/ # Mods Forge (versionnés - 20 MB) +├── plugins/ # Plugins Bukkit (versionnés - 3.3 MB) +├── config/ # Configuration mods/plugins (versionné) +│ +├── world/ # Données monde (NON versionné) +└── logs/ # Logs serveur (NON versionné) +``` + +## 🎮 Commandes utiles + +### Gestion du serveur +```bash +# Démarrer +docker-compose up -d + +# Arrêter +docker-compose down + +# Redémarrer +docker-compose restart + +# Voir les logs (sans spam) +docker logs -f mc-nationsglory 2>&1 | sed -u '/^>/d' +``` + +### Console RCON +```bash +# Récupérer le mot de passe RCON +docker exec mc-nationsglory cat /data/server.properties | grep rcon.password + +# Console interactive +docker exec -it mc-nationsglory rcon-cli --password + +# Commande unique +docker exec mc-nationsglory rcon-cli --password "list" +``` + +### Exemples de commandes serveur +```bash +# Donner OP à un joueur +op + +# Téléporter un joueur +tp + +# Changer le gamemode +gamemode 1 + +# Message global +say Bienvenue! +``` + +## 🔧 Configuration + +### Modifier la mémoire +Éditer `docker-compose.yml`: +```yaml +environment: + MEMORY: "3G" # Mémoire max + INIT_MEMORY: "1500M" # Mémoire initiale +``` + +### Ajouter des mods +1. Placer le fichier `.jar` dans `mods/` +2. Commiter: `git add mods/*.jar && git commit -m "Add mod"` +3. Redémarrer: `docker-compose restart` + +### Ajouter des plugins +1. Placer le fichier `.jar` dans `plugins/` +2. Commiter: `git add plugins/*.jar && git commit -m "Add plugin"` +3. Redémarrer: `docker-compose restart` + +## 📊 Taille du dépôt + +**Total: ~53 MB** +- mcpc.jar: 29 MB (INCLUS) +- Mods: 20 MB +- Plugins: 3.3 MB +- Config: 488 KB +- Autres: 212 KB + +**Clone initial:** ~1 minute (selon connexion) + +## ⚠️ Important + +- `world/` n'est PAS versionné (données de jeu spécifiques) +- `logs/` et `crash-reports/` sont ignorés +- `.env` contient des données sensibles (ne pas commiter) +- Le serveur fonctionne avec Docker (obligatoire) +- Port 25565 doit être ouvert + +## 🆘 Dépannage + +### Le serveur ne démarre pas +```bash +# Vérifier les logs +docker logs mc-nationsglory + +# Vérifier que mcpc.jar existe +ls -lh mcpc.jar +# Devrait afficher: 29M + +# Recréer le conteneur +docker-compose down +docker-compose up -d +``` + +### RCON ne fonctionne pas +```bash +# Récupérer le bon mot de passe +docker exec mc-nationsglory cat /data/server.properties | grep rcon.password +``` + +### Port déjà utilisé +Modifier le port dans `docker-compose.yml`: +```yaml +ports: + - "25566:25565" # Utilise le port 25566 au lieu de 25565 +``` + +## 🔄 Workflow de mise à jour + +### Sur le serveur de production +```bash +# Récupérer les mises à jour +git pull + +# Redémarrer +docker-compose restart + +# Vérifier +docker logs -f mc-nationsglory | sed -u '/^>/d' +``` + +### Ajouter un nouveau mod +```bash +# Local +cp nouveau-mod.jar mods/ +git add mods/nouveau-mod.jar +git commit -m "Add: nouveau-mod" +git push + +# Production +git pull +docker-compose restart +``` + +## 📝 Licence + +NationsGlory 1.6.4 - Serveur Minecraft moddé avec Docker diff --git a/DOCKER.md b/DOCKER.md new file mode 100644 index 0000000..9f64ac8 --- /dev/null +++ b/DOCKER.md @@ -0,0 +1,349 @@ +# 🐳 NationsGlory - Déploiement Docker + +Serveur Minecraft 1.6.4 MCPC+ conteneurisé avec Docker. + +## 🚀 Démarrage rapide + +```bash +# Copier la configuration +cp .env.example .env + +# Démarrer le serveur +make start +# ou: docker-compose up -d + +# Voir les logs +make logs +# ou: docker-compose logs -f +``` + +Le serveur démarre sur `localhost:25565` + +## 📋 Commandes Make disponibles + +```bash +make help # Afficher l'aide +make start # Démarrer le serveur +make stop # Arrêter le serveur +make restart # Redémarrer +make logs # Voir les logs en temps réel +make status # État et ressources +make console # Console serveur (RCON) +make backup # Créer une sauvegarde +make check # Vérifier la configuration +``` + +Voir toutes les commandes : `make help` + +## 📁 Structure des volumes + +``` +/srv/minecraft/moddé/ +├── data/ # Volume: données serveur +│ ├── mcpc.jar # Serveur MCPC+ +│ ├── server.properties +│ ├── ops.txt +│ └── logs/ +├── mods/ # Volume: mods Forge +├── plugins/ # Volume: plugins Bukkit +├── config/ # Volume: configurations +├── libraries/ # Volume: dépendances Maven +├── world/ # Volume: monde Minecraft +└── backups/ # Sauvegardes locales +``` + +## ⚙️ Configuration (.env) + +Principales variables : + +```env +MEMORY=2G # RAM maximale +INIT_MEMORY=1G # RAM initiale +MINECRAFT_PORT=25565 # Port d'écoute +MAX_PLAYERS=20 # Joueurs max +GAMEMODE=creative # Mode de jeu +LEVEL_TYPE=FLAT # Type de monde +``` + +Après modification : `make restart` + +## 🎮 Gestion du serveur + +### Console serveur + +```bash +# Se connecter à la console +make console + +# Dans la console: +> op +> list +> save-all +> stop +``` + +### Commandes administratives + +```bash +# Donner OP +docker-compose exec nationsglory-modded rcon-cli op + +# Liste des joueurs +docker-compose exec nationsglory-modded rcon-cli list + +# Sauvegarder +docker-compose exec nationsglory-modded rcon-cli save-all +``` + +## 💾 Sauvegardes + +### Backup manuel + +```bash +make backup +``` + +Crée : `backups/world-YYYYMMDD-HHMM.tar.gz` + +### Lister les backups + +```bash +make list-backups +``` + +### Restaurer un backup + +```bash +# Arrêter le serveur +make stop + +# Restaurer +tar -xzf backups/world-YYYYMMDD-HHMM.tar.gz + +# Redémarrer +make start +``` + +## 🔧 Maintenance + +### Nettoyer les logs + +```bash +make clean-logs +``` + +### Supprimer vieux backups (>7j) + +```bash +make clean-backups +``` + +### Mettre à jour Docker image + +```bash +make update +make restart +``` + +### Réinitialiser le monde + +⚠️ **DESTRUCTIF** - Supprime toutes les constructions ! + +```bash +make reset-world +``` + +## 📊 Monitoring + +### Statistiques + +```bash +make status # État général +make stats # Statistiques détaillées +``` + +### Logs + +```bash +make logs # Temps réel +docker-compose logs --tail=100 # 100 dernières lignes +docker-compose logs | grep ERROR # Erreurs uniquement +``` + +### Ressources + +```bash +docker stats mc-nationsglory +``` + +## 🚚 Migration vers /srv/minecraft + +### Automatique (recommandé) + +```bash +sudo make migrate +# ou: sudo ./migrate-to-srv.sh +``` + +### Manuelle + +```bash +# Créer la structure +sudo mkdir -p /srv/minecraft/moddé + +# Copier les fichiers +sudo cp -r data mods plugins config libraries /srv/minecraft/moddé/ +sudo cp docker-compose.yml .env /srv/minecraft/moddé/ + +# Permissions +sudo chown -R 1000:1000 /srv/minecraft/moddé + +# Démarrer +cd /srv/minecraft/moddé +make start +``` + +## 🔐 Sécurité + +### Whitelist + +```bash +# Activer +docker-compose exec nationsglory-modded rcon-cli whitelist on + +# Ajouter joueur +docker-compose exec nationsglory-modded rcon-cli whitelist add +``` + +### Bannir + +```bash +docker-compose exec nationsglory-modded rcon-cli ban +``` + +## 🐛 Dépannage + +### Le serveur ne démarre pas + +```bash +# Vérifier les logs +make logs + +# Vérifier la config +make check + +# Réparer permissions +make fix-permissions +``` + +### Port déjà utilisé + +Dans `.env` : +```env +MINECRAFT_PORT=25566 +``` + +Puis : `make restart` + +### Problème de mémoire + +Dans `.env` : +```env +MEMORY=4G +INIT_MEMORY=2G +``` + +### Réparer les permissions + +```bash +make fix-permissions +``` + +## 📚 Documentation complète + +- [README.md](README.md) - Guide complet +- [DEPLOYMENT.md](DEPLOYMENT.md) - Déploiement production +- [QUICKSTART.md](QUICKSTART.md) - Démarrage rapide +- [TECHNICAL_NOTES.md](TECHNICAL_NOTES.md) - Notes techniques + +## 🌐 Intégration réseau + +### Avec Traefik + +Ajouter dans `docker-compose.yml` : + +```yaml +labels: + - "traefik.enable=true" + - "traefik.tcp.routers.minecraft.rule=HostSNI(`*`)" + - "traefik.tcp.routers.minecraft.entrypoints=minecraft" + +networks: + - traefik-network +``` + +### Multi-serveurs (Velocity/BungeeCord) + +Structure recommandée : +``` +/srv/minecraft/ +├── proxy/ # Velocity/BungeeCord +├── moddé/ # Ce serveur +└── survie/ # Autre serveur +``` + +## ⚡ Optimisation + +### Augmenter performances + +Dans `.env` : +```env +MEMORY=4G +INIT_MEMORY=2G +VIEW_DISTANCE=8 +``` + +Dans `docker-compose.yml` : +```yaml +JVM_OPTS: "-XX:+UseG1GC -XX:MaxGCPauseMillis=50 -XX:+UnlockExperimentalVMOptions" +``` + +### Limites Docker + +```yaml +deploy: + resources: + limits: + cpus: '2' + memory: 4G +``` + +## 📞 Support + +### Vérifier la configuration + +```bash +make check +``` + +### Logs importants + +- Docker: `make logs` +- Serveur: `data/logs/latest.log` +- Crash: `data/crash-reports/` + +### État du système + +```bash +make status +make stats +docker ps +docker stats +``` + +--- + +**Image Docker** : `itzg/minecraft-server:java8` +**Serveur** : MCPC+ 1.6.4-R2.1-forge965-B251 +**Mods** : 21 actifs +**Plugins** : WorldEdit, Essentials diff --git a/INDEX.md b/INDEX.md new file mode 100644 index 0000000..041a199 --- /dev/null +++ b/INDEX.md @@ -0,0 +1,205 @@ +# 📖 Index de Documentation - Serveur NationsGlory + +Bienvenue dans la documentation complète du serveur NationsGlory MCPC+ 1.6.4 ! + +## 🎯 Guide de navigation + +### Pour commencer rapidement + +1. **🚀 Nouveau sur ce serveur ?** + - Commencez par [QUICKSTART.md](QUICKSTART.md) - Démarrage en 2 minutes + - Puis lisez [README.md](README.md) - Vue d'ensemble complète + +2. **🐳 Vous voulez utiliser Docker ?** + - Lisez [DOCKER.md](DOCKER.md) - Guide Docker complet + - Utilisez le `Makefile` pour des commandes simplifiées + +3. **🌐 Migration vers serveur de production ?** + - Suivez [DEPLOYMENT.md](DEPLOYMENT.md) - Déploiement sur /srv/minecraft + - Utilisez `./migrate-to-srv.sh` pour automatiser + +## 📚 Documentation par thème + +### 🎮 Utilisation du serveur + +| Document | Description | Niveau | +|----------|-------------|--------| +| [QUICKSTART.md](QUICKSTART.md) | Commandes essentielles et démarrage rapide | ⭐ Débutant | +| [README.md](README.md) | Guide complet du serveur, configuration, mods, plugins | ⭐⭐ Intermédiaire | +| [INSTALLATION.md](INSTALLATION.md) | Détails de l'installation, statistiques, fonctionnalités | ⭐⭐ Intermédiaire | + +### 🐳 Docker et conteneurisation + +| Document | Description | Niveau | +|----------|-------------|--------| +| [DOCKER.md](DOCKER.md) | Utilisation avec Docker Compose, commandes Make | ⭐⭐ Intermédiaire | +| [DEPLOYMENT.md](DEPLOYMENT.md) | Déploiement production, /srv/minecraft, Traefik | ⭐⭐⭐ Avancé | +| `docker-compose.yml` | Configuration Docker Compose | ⭐⭐⭐ Avancé | +| `.env.example` | Variables d'environnement | ⭐ Débutant | +| `Makefile` | Commandes simplifiées (make help) | ⭐ Débutant | + +### 🔧 Configuration et techniques + +| Document | Description | Niveau | +|----------|-------------|--------| +| [TECHNICAL_NOTES.md](TECHNICAL_NOTES.md) | Notes techniques détaillées, JVM, Docker | ⭐⭐⭐ Avancé | +| `server-final/server.properties` | Configuration serveur Minecraft | ⭐⭐ Intermédiaire | + +### 🛠️ Scripts et automatisation + +| Fichier | Description | Usage | +|---------|-------------|-------| +| `migrate-to-srv.sh` | Migration vers /srv/minecraft | `sudo ./migrate-to-srv.sh` | +| `install-prod.sh` | Installation automatique sur serveur | `sudo ./install-prod.sh` | +| `server-final/start-docker.sh` | Démarrage serveur (méthode originale) | `./start-docker.sh` | +| `Makefile` | Commandes simplifiées | `make start`, `make help` | + +## 🗺️ Parcours recommandés + +### Parcours 1 : Débutant - Test rapide en local + +1. ✅ Lire [QUICKSTART.md](QUICKSTART.md) +2. ✅ Exécuter `cd server-final && ./start-docker.sh` +3. ✅ Se connecter au serveur (localhost:25565) +4. ✅ Tester les commandes dans [QUICKSTART.md](QUICKSTART.md) + +**Temps estimé** : 10 minutes + +### Parcours 2 : Intermédiaire - Déploiement Docker local + +1. ✅ Lire [DOCKER.md](DOCKER.md) +2. ✅ Copier `.env.example` vers `.env` +3. ✅ Exécuter `make start` ou `docker-compose up -d` +4. ✅ Utiliser les commandes Make (`make logs`, `make backup`, etc.) +5. ✅ Lire [README.md](README.md) pour comprendre les mods et plugins + +**Temps estimé** : 30 minutes + +### Parcours 3 : Avancé - Déploiement production + +1. ✅ Lire [DEPLOYMENT.md](DEPLOYMENT.md) en entier +2. ✅ Préparer le serveur (Docker, firewall, /srv/minecraft) +3. ✅ Exécuter `sudo ./migrate-to-srv.sh` ou migration manuelle +4. ✅ Configurer les backups automatiques +5. ✅ Configurer Traefik (si nécessaire) +6. ✅ Lire [TECHNICAL_NOTES.md](TECHNICAL_NOTES.md) pour optimisation + +**Temps estimé** : 1-2 heures + +### Parcours 4 : Expert - Migration vers serveur distant + +1. ✅ Lire [DEPLOYMENT.md](DEPLOYMENT.md) section "Transfert vers machine distante" +2. ✅ Créer archive : `tar -czf nationsglory-docker.tar.gz ...` +3. ✅ Transférer via SCP +4. ✅ Sur le serveur : `sudo ./install-prod.sh` +5. ✅ Extraire et configurer +6. ✅ Démarrer et tester +7. ✅ Configurer monitoring et backups + +**Temps estimé** : 2-3 heures + +## 🔍 Recherche rapide + +### Je veux... + +| Objectif | Document(s) | Commande | +|----------|-------------|----------| +| **Démarrer le serveur rapidement** | [QUICKSTART.md](QUICKSTART.md) | `make start` ou `./start-docker.sh` | +| **Voir les logs** | [DOCKER.md](DOCKER.md) | `make logs` ou `docker-compose logs -f` | +| **Faire un backup** | [DEPLOYMENT.md](DEPLOYMENT.md) | `make backup` | +| **Donner OP à un joueur** | [QUICKSTART.md](QUICKSTART.md) | `make console` puis `op ` | +| **Changer la RAM** | [DOCKER.md](DOCKER.md) | Éditer `.env` puis `make restart` | +| **Migrer vers /srv/minecraft** | [DEPLOYMENT.md](DEPLOYMENT.md) | `sudo ./migrate-to-srv.sh` | +| **Ajouter un mod** | [README.md](README.md) | Copier dans `mods/` puis `make restart` | +| **Réinitialiser le monde** | [DEPLOYMENT.md](DEPLOYMENT.md) | `make reset-world` | +| **Optimiser les performances** | [TECHNICAL_NOTES.md](TECHNICAL_NOTES.md) | Augmenter RAM, réduire view-distance | +| **Configurer backups auto** | [DEPLOYMENT.md](DEPLOYMENT.md) | Voir section "Sauvegardes" | + +## 📊 Statistiques du projet + +### Configuration serveur + +- **Version Minecraft** : 1.6.4 +- **Serveur** : MCPC+ 1.6.4-R2.1-forge965-B251 +- **Forge** : 9.11.1.965 +- **Java** : 7 (via Docker) +- **Image Docker** : itzg/minecraft-server:java8 + +### Contenu + +- **Mods** : 21 actifs (Chisel, WesterosBlocks, BiblioCraft, etc.) +- **Plugins** : 2 (WorldEdit, Essentials) +- **Taille totale** : ~120 MB +- **Type de monde** : FLAT (super-plat) + +### Documentation + +- **Fichiers MD** : 6 guides complets +- **Scripts** : 3 scripts d'automatisation +- **Configuration** : Docker Compose + Makefile +- **Langues** : Français 🇫🇷 + +## 🆘 Aide et support + +### Problèmes courants + +| Problème | Solution | Document | +|----------|----------|----------| +| Le serveur ne démarre pas | `make logs` pour voir les erreurs | [DEPLOYMENT.md](DEPLOYMENT.md) section Dépannage | +| Permission denied | `make fix-permissions` ou `sudo chown -R 1000:1000 .` | [DOCKER.md](DOCKER.md) | +| Port déjà utilisé | Changer `MINECRAFT_PORT` dans `.env` | [DOCKER.md](DOCKER.md) | +| Connexion refusée | Vérifier `online-mode=false` | [README.md](README.md) | +| Lag/performances | Augmenter RAM, réduire view-distance | [TECHNICAL_NOTES.md](TECHNICAL_NOTES.md) | + +### Commandes de diagnostic + +```bash +make check # Vérifier configuration +make status # État du serveur +make stats # Statistiques détaillées +docker ps # Conteneurs actifs +docker logs mc-nationsglory # Logs Docker +``` + +## 🎓 Ressources additionnelles + +### Liens utiles + +- **Docker** : https://docs.docker.com/ +- **Docker Compose** : https://docs.docker.com/compose/ +- **itzg/minecraft-server** : https://github.com/itzg/docker-minecraft-server +- **MCPC+** : https://www.spigotmc.org/wiki/mcpc-plus/ +- **Minecraft Forge** : https://files.minecraftforge.net/ + +### Communauté + +- Serveur Discord NationsGlory (si disponible) +- Forum NationsGlory +- GitHub Issues pour bugs/suggestions + +## 📅 Versions et changelog + +| Date | Version | Changements | +|------|---------|-------------| +| 2026-02-03 | 1.0.0 | Installation initiale, configuration Docker, documentation complète | + +## 📝 Contribution + +Pour contribuer à cette documentation : + +1. Identifier les améliorations possibles +2. Proposer des modifications +3. Tester les changements +4. Mettre à jour l'index si nécessaire + +## 📜 Licence + +Configuration serveur NationsGlory - Usage privé/éducatif + +--- + +**Dernière mise à jour** : 3 février 2026 +**Mainteneur** : Configuration automatique +**Contact** : Voir documentation principale + +💡 **Astuce** : Utilisez `make help` pour voir toutes les commandes disponibles ! diff --git a/INSTALLATION.md b/INSTALLATION.md new file mode 100644 index 0000000..c65b5df --- /dev/null +++ b/INSTALLATION.md @@ -0,0 +1,201 @@ +# 📦 Installation et Configuration - Serveur NationsGlory + +## ✅ Installation terminée + +Le serveur MCPC+ 1.6.4 est prêt à l'emploi avec : + +### 🎮 Serveur +- **MCPC+ 1.6.4-R2.1-forge965-B251** (29 MB) +- **Forge 9.11.1.965** intégré +- **Java 7** via Docker (conteneur isolé) +- **Port 25565** configuré + +### 🔌 Plugins Bukkit (2) +- **WorldEdit** - Édition de terrain avancée +- **Essentials** - Commandes de gestion serveur + +### 🎨 Mods Forge (21 actifs) +1. Chisel - Blocs décoratifs +2. WesterosBlocks - Blocs Game of Thrones +3. BiblioCraft - Meubles +4. Autoutils - Outils automatiques +5. CustomNPCs - PNJs personnalisés +6. Flan's Mod - Véhicules et armes +7. Netherrocks - Minerais du Nether +8. TLSpecialArmor - Armures spéciales +9. UniversalElectricity - Électricité +10. WeaponMod - Armes avancées +11. AquaTweaks +12. Et 10 autres mods... + +### ⚙️ Configuration serveur +```properties +gamemode=1 # Créatif par défaut +level-type=FLAT # Monde plat +online-mode=false # Comptes crack acceptés +pvp=false # PvP désactivé +spawn-monsters=false # Pas de monstres +allow-flight=true # Vol autorisé +difficulty=0 # Pacifique +max-players=20 # 20 joueurs max +``` + +## 🚀 Commandes de démarrage + +### Démarrer le serveur +```bash +cd "/home/innotex/Documents/Projet/Serveur NationsGlory/server-final" +./start-docker.sh +``` + +### Arrêter le serveur +Dans la console serveur : +``` +stop +``` +Ou `Ctrl+C` dans le terminal Docker + +## 📁 Structure du projet + +``` +Serveur NationsGlory/ +├── README.md # Documentation complète +├── QUICKSTART.md # Guide de démarrage rapide +├── .gitignore # Fichiers exclus de Git +└── server-final/ # Serveur opérationnel + ├── mcpc.jar # Exécutable MCPC+ + ├── start-docker.sh # Script de démarrage + ├── server.properties # Configuration + ├── mods/ # 13 fichiers .jar + ├── plugins/ # WorldEdit + Essentials + ├── config/ # Configurations mods + ├── libraries/ # Dépendances Maven + └── world/ # Monde Minecraft (généré) +``` + +## 🔐 Sécurité et permissions + +### Fichiers de gestion +- `ops.txt` - Opérateurs (admins) +- `white-list.txt` - Liste blanche +- `banned-players.txt` - Joueurs bannis +- `banned-ips.txt` - IPs bannies + +### Donner les droits admin +``` +op +``` + +## 🌍 Type de monde : FLAT + +Le serveur génère un monde **super-plat** idéal pour : +- ✅ Constructions massives +- ✅ Villes et nations +- ✅ Projets créatifs +- ✅ PvP arènes organisées + +## 🛠️ Maintenance + +### Sauvegarder le monde +```bash +cd server-final +tar -czf ../backup-$(date +%Y%m%d).tar.gz world/ +``` + +### Réinitialiser le monde +```bash +cd server-final +rm -rf world/ +# Nouveau monde généré au prochain démarrage +``` + +### Nettoyer les logs +```bash +cd server-final +rm -f *.log *.log.* *.lck +``` + +## 📊 Ressources système + +### Docker +- **RAM** : 1 GB min, 2 GB max +- **CPU** : Garbage Collector G1GC +- **Fichiers** : ulimit 65535 (évite erreurs allocation) + +### Optimisation +Pour augmenter la RAM : +```bash +# Éditer start-docker.sh +-Xmx2G → -Xmx4G # RAM max +-Xms1G → -Xms2G # RAM initiale +``` + +## 🐛 Résolution de problèmes + +| Problème | Solution | +|----------|----------| +| Permission denied | `sudo chown -R $USER:$USER server-final/` | +| Port déjà utilisé | `netstat -tuln \| grep 25565` puis tuer le processus | +| Connexion refusée | Vérifier `online-mode=false` | +| Crash au démarrage | Lire `crash-reports/` | +| Lag serveur | Réduire `view-distance` dans server.properties | + +## 📝 Logs importants + +- `server.log` - Log principal du serveur +- `ForgeModLoader-server-0.log` - Logs Forge et mods +- `crash-reports/` - Rapports de crash détaillés + +## 🔄 Mises à jour + +### Ajouter un mod +1. Télécharger le mod pour **Minecraft 1.6.4 Forge** +2. Placer le `.jar` dans `server-final/mods/` +3. Redémarrer le serveur +4. Vérifier dans les logs : "Successfully loaded X mods" + +### Ajouter un plugin +1. Télécharger le plugin pour **Bukkit 1.6.4** +2. Placer le `.jar` dans `server-final/plugins/` +3. Redémarrer le serveur +4. Taper `plugins` dans la console pour vérifier + +## 📞 Support et documentation + +### Fichiers de référence +- [README.md](README.md) - Documentation complète +- [QUICKSTART.md](QUICKSTART.md) - Démarrage rapide + +### Commandes utiles +```bash +# Vérifier les mods chargés +grep "Successfully loaded" server-final/server.log + +# Voir les joueurs connectés +grep "logged in" server-final/server.log + +# Trouver les erreurs +grep "ERROR\|SEVERE" server-final/server.log +``` + +## ✨ Fonctionnalités principales + +✅ **Support mods ET plugins** (MCPC+) +✅ **Comptes crack acceptés** (online-mode=false) +✅ **Monde plat** pour constructions +✅ **Mode créatif** par défaut +✅ **PvP désactivé** (serveur pacifique) +✅ **21 mods** préinstallés +✅ **Plugins essentiels** (WorldEdit, Essentials) +✅ **Docker** pour isolation Java 7 +✅ **Documentation complète** en français + +--- + +**Date d'installation** : 3 février 2026 +**Version serveur** : MCPC+ 1.6.4-R2.1-forge965-B251 +**Minecraft** : 1.6.4 +**Forge** : 9.11.1.965 +**Java** : 7 (Docker anapsix/alpine-java:7) + +🎮 **Bon jeu sur NationsGlory !** diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fb27266 --- /dev/null +++ b/Makefile @@ -0,0 +1,129 @@ +# Makefile pour le serveur NationsGlory +# Usage: make [commande] + +.PHONY: help start stop restart logs status backup restore migrate clean + +# Couleurs pour les messages +BLUE=\033[0;34m +GREEN=\033[0;32m +YELLOW=\033[1;33m +NC=\033[0m # No Color + +help: ## Affiche cette aide + @echo "$(BLUE)╔══════════════════════════════════════════════════════════════════╗$(NC)" + @echo "$(BLUE)║ 🎮 Serveur NationsGlory - Commandes disponibles ║$(NC)" + @echo "$(BLUE)╚══════════════════════════════════════════════════════════════════╝$(NC)" + @echo "" + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " $(GREEN)%-15s$(NC) %s\n", $$1, $$2}' + @echo "" + +start: ## Démarrer le serveur + @echo "$(BLUE)🚀 Démarrage du serveur NationsGlory...$(NC)" + @docker-compose up -d + @echo "$(GREEN)✅ Serveur démarré !$(NC)" + @echo "$(YELLOW)Voir les logs: make logs$(NC)" + +stop: ## Arrêter le serveur + @echo "$(BLUE)🛑 Arrêt du serveur...$(NC)" + @docker-compose down + @echo "$(GREEN)✅ Serveur arrêté$(NC)" + +restart: ## Redémarrer le serveur + @echo "$(BLUE)🔄 Redémarrage du serveur...$(NC)" + @docker-compose restart + @echo "$(GREEN)✅ Serveur redémarré$(NC)" + +logs: ## Afficher les logs en temps réel + @docker-compose logs -f --tail=100 + +status: ## Afficher l'état du serveur + @echo "$(BLUE)📊 État du serveur:$(NC)" + @docker-compose ps + @echo "" + @echo "$(BLUE)💾 Utilisation des ressources:$(NC)" + @docker stats --no-stream mc-nationsglory 2>/dev/null || echo "Serveur non démarré" + +shell: ## Ouvrir un shell dans le conteneur + @docker-compose exec nationsglory-modded bash + +console: ## Se connecter à la console serveur (RCON) + @docker-compose exec nationsglory-modded rcon-cli + +backup: ## Créer une sauvegarde du monde + @echo "$(BLUE)💾 Création d'un backup...$(NC)" + @mkdir -p backups + @docker-compose exec -T nationsglory-modded rcon-cli save-all flush || true + @sleep 3 + @tar -czf backups/world-$$(date +%Y%m%d-%H%M).tar.gz data/world/ data/ops.txt data/white-list.txt 2>/dev/null + @echo "$(GREEN)✅ Backup créé: backups/world-$$(date +%Y%m%d-%H%M).tar.gz$(NC)" + +list-backups: ## Lister les sauvegardes + @echo "$(BLUE)📦 Sauvegardes disponibles:$(NC)" + @ls -lh backups/*.tar.gz 2>/dev/null || echo "Aucune sauvegarde" + +clean-logs: ## Nettoyer les anciens logs + @echo "$(BLUE)🧹 Nettoyage des logs...$(NC)" + @rm -f data/logs/*.log.gz + @rm -f data/*.log.* + @echo "$(GREEN)✅ Logs nettoyés$(NC)" + +clean-backups: ## Supprimer les backups > 7 jours + @echo "$(BLUE)🧹 Nettoyage des anciens backups...$(NC)" + @find backups/ -name "*.tar.gz" -mtime +7 -delete 2>/dev/null || true + @echo "$(GREEN)✅ Anciens backups supprimés$(NC)" + +update: ## Mettre à jour l'image Docker + @echo "$(BLUE)🔄 Mise à jour de l'image Docker...$(NC)" + @docker-compose pull + @echo "$(GREEN)✅ Image mise à jour$(NC)" + @echo "$(YELLOW)Redémarrer avec: make restart$(NC)" + +migrate: ## Migrer le serveur vers /srv/minecraft + @echo "$(BLUE)🚀 Migration vers /srv/minecraft...$(NC)" + @sudo ./migrate-to-srv.sh + +reset-world: ## Réinitialiser le monde (⚠️ DESTRUCTIF) + @echo "$(YELLOW)⚠️ ATTENTION: Cette opération va supprimer le monde actuel !$(NC)" + @read -p "Continuer? [y/N] " -n 1 -r; \ + echo ""; \ + if [[ $$REPLY =~ ^[Yy]$$ ]]; then \ + echo "$(BLUE)💾 Backup du monde actuel...$(NC)"; \ + tar -czf backups/world-before-reset-$$(date +%Y%m%d-%H%M).tar.gz data/world/ 2>/dev/null; \ + echo "$(BLUE)🛑 Arrêt du serveur...$(NC)"; \ + docker-compose down; \ + echo "$(BLUE)🗑️ Suppression du monde...$(NC)"; \ + sudo rm -rf data/world/; \ + echo "$(BLUE)🚀 Redémarrage...$(NC)"; \ + docker-compose up -d; \ + echo "$(GREEN)✅ Nouveau monde généré$(NC)"; \ + else \ + echo "$(YELLOW)Annulé$(NC)"; \ + fi + +stats: ## Statistiques du serveur + @echo "$(BLUE)📊 Statistiques:$(NC)" + @echo " - Taille totale: $$(du -sh . | cut -f1)" + @echo " - Mods: $$(ls -1 mods/*.jar 2>/dev/null | wc -l) fichiers" + @echo " - Plugins: $$(ls -1 plugins/*.jar 2>/dev/null | wc -l) fichiers" + @echo " - Monde: $$(du -sh data/world 2>/dev/null | cut -f1 || echo '0')" + @echo " - Backups: $$(ls -1 backups/*.tar.gz 2>/dev/null | wc -l || echo '0')" + @echo "" + @echo "$(BLUE)🐳 Docker:$(NC)" + @docker stats --no-stream mc-nationsglory 2>/dev/null || echo " Serveur non démarré" + +fix-permissions: ## Réparer les permissions des fichiers + @echo "$(BLUE)🔐 Réparation des permissions...$(NC)" + @sudo chown -R 1000:1000 . + @sudo chmod -R 755 . + @echo "$(GREEN)✅ Permissions corrigées$(NC)" + +check: ## Vérifier la configuration + @echo "$(BLUE)🔍 Vérification de la configuration...$(NC)" + @test -f docker-compose.yml && echo " ✅ docker-compose.yml" || echo " ❌ docker-compose.yml manquant" + @test -f .env && echo " ✅ .env" || echo " ⚠️ .env manquant (copier .env.example)" + @test -f data/mcpc.jar && echo " ✅ mcpc.jar" || echo " ❌ mcpc.jar manquant" + @test -d mods && echo " ✅ mods/ ($$(ls -1 mods/*.jar 2>/dev/null | wc -l) fichiers)" || echo " ❌ mods/ manquant" + @test -d plugins && echo " ✅ plugins/ ($$(ls -1 plugins/*.jar 2>/dev/null | wc -l) fichiers)" || echo " ❌ plugins/ manquant" + @echo "" + @command -v docker >/dev/null 2>&1 && echo " ✅ Docker installé" || echo " ❌ Docker non installé" + @command -v docker-compose >/dev/null 2>&1 && echo " ✅ Docker Compose installé" || echo " ❌ Docker Compose non installé" diff --git a/QUICKSTART.md b/QUICKSTART.md new file mode 100644 index 0000000..b125571 --- /dev/null +++ b/QUICKSTART.md @@ -0,0 +1,80 @@ +# 🚀 Guide de démarrage rapide - NationsGlory + +## Démarrer le serveur + +```bash +cd "/home/innotex/Documents/Projet/Serveur NationsGlory/server-final" +./start-docker.sh +``` + +## Première connexion + +1. Lancez Minecraft 1.6.4 +2. Multijoueur → Ajouter un serveur +3. Adresse : `localhost:25565` (ou IP du serveur) +4. Le serveur accepte les **comptes crack** + +## Devenir administrateur + +Dans la console du serveur : +``` +op +``` + +## Commandes essentielles + +### WorldEdit (édition terrain) +``` +//wand # Outil de sélection (hache en bois) +//set stone # Remplir de pierre +//set 0 # Supprimer (air) +//copy # Copier +//paste # Coller +//undo # Annuler +``` + +### Essentials (gestion) +``` +/gamemode 1 # Mode créatif +/gamemode 0 # Mode survie +/tp # Téléportation +/fly # Activer vol +/time set day # Jour +/weather clear # Beau temps +/give [qté] # Donner items +``` + +### Console serveur +``` +stop # Arrêter proprement +save-all # Sauvegarder +list # Liste joueurs +op # Donner OP +ban # Bannir +``` + +## Configuration actuelle + +- ✅ **Mode** : Créatif +- ✅ **Monde** : Plat (FLAT) +- ✅ **PvP** : Désactivé +- ✅ **Monstres** : Désactivés +- ✅ **Vol** : Autorisé +- ✅ **Comptes crack** : Acceptés +- ✅ **21 mods** chargés +- ✅ **Plugins** : WorldEdit, Essentials + +## Problèmes courants + +**Le serveur ne démarre pas ?** +→ Vérifier que Docker est lancé : `docker ps` + +**Permission denied ?** +→ `sudo chown -R $USER:$USER server-final/` + +**Connexion refusée ?** +→ Vérifier que le port 25565 est ouvert + +## Documentation complète + +Voir [README.md](README.md) pour la documentation complète. diff --git a/README.md b/README.md new file mode 100644 index 0000000..f7bb517 --- /dev/null +++ b/README.md @@ -0,0 +1,314 @@ +# 🎮 Serveur NationsGlory MCPC+ 1.6.4 + +Serveur Minecraft 1.6.4 avec support mods (Forge) et plugins (Bukkit) via MCPC+. + +## � Navigation rapide + +- **🐳 [Déploiement Docker](DOCKER.md)** - Utilisation avec Docker Compose +- **🚀 [Déploiement Production](DEPLOYMENT.md)** - Migration vers /srv/minecraft +- **⚡ [Démarrage rapide](QUICKSTART.md)** - Commandes essentielles +- **🔧 [Notes techniques](TECHNICAL_NOTES.md)** - Configuration détaillée +- **📦 [Installation](INSTALLATION.md)** - Guide d'installation + +## 🐳 Déploiement Docker (recommandé) + +### Option 1 : Migration locale vers /srv/minecraft +```bash +sudo ./migrate-to-srv.sh +cd /srv/minecraft/moddé +make start +``` + +### Option 2 : Développement local +```bash +cd server-final +cp ../docker-compose.yml . +cp ../.env.example .env +make start +``` + +Voir [DOCKER.md](DOCKER.md) pour la documentation complète Docker. + +## 📋 Prérequis + +### Sans Docker (méthode originale) +- **Port 25565** disponible +- Au moins **2 GB de RAM** libre + +### Avec Docker (recommandé) +- **Docker** installé sur votre système +- **Docker Compose** installé +- Au moins **2 GB de RAM** libre + +## 🚀 Démarrage rapide + +### Méthode Docker (recommandée) +```bash +# Avec Make +make start +make logs + +# Ou avec Docker Compose +docker-compose up -d +docker-compose logs -f +``` + +### Méthode originale (Docker manuel) +```bash +cd server-final +./start-docker.sh +``` + +Le serveur démarre dans un conteneur Docker avec Java 7, requis pour MCPC+ 1.6.4. + +## 📁 Structure du serveur + +``` +server-final/ +├── mcpc.jar # Serveur MCPC+ 1.6.4-R2.1-forge965-B251 +├── start-docker.sh # Script de démarrage Docker +├── server.properties # Configuration serveur +├── mods/ # Mods Forge +│ ├── chisel-1.0.jar +│ ├── ngbibliocraft-1.5.5.jar +│ ├── westerosblocksng.jar +│ └── ... (21 mods chargés) +├── plugins/ # Plugins Bukkit +│ ├── WorldEdit.jar # Édition de terrain +│ └── Essentials.jar # Commandes essentielles +├── config/ # Configurations mods +├── libraries/ # Dépendances Maven +└── world/ # Monde Minecraft (FLAT) +``` + +## ⚙️ Configuration + +### Serveur (server.properties) + +- **Port** : `25565` +- **Mode** : Créatif (`gamemode=1`) +- **Type de monde** : FLAT (`level-type=FLAT`) +- **Authentification** : Désactivée (`online-mode=false`) - comptes crack acceptés +- **PvP** : Désactivé (`pvp=false`) +- **Monstres** : Désactivés (`spawn-monsters=false`) +- **Vol** : Autorisé (`allow-flight=true`) + +### Ressources Docker + +- **RAM Max** : 2 GB (`-Xmx2G`) +- **RAM Init** : 1 GB (`-Xms1G`) +- **GC** : G1GC (optimisé) +- **File descriptors** : 65535 (ulimit configuré) + +## 🎯 Plugins installés + +### WorldEdit +Édition de terrain avancée pour constructions massives. + +**Commandes principales** : +- `//wand` - Obtenir l'outil de sélection +- `//set ` - Remplir la sélection +- `//replace ` - Remplacer des blocs +- `//copy` - Copier la sélection +- `//paste` - Coller +- `//undo` - Annuler +- `//redo` - Refaire + +### Essentials +Commandes de gestion serveur essentielles. + +**Commandes principales** : +- `/tp ` - Téléportation +- `/give [qté]` - Donner items +- `/gamemode ` - Changer mode de jeu +- `/fly` - Activer/désactiver vol +- `/heal` - Soigner +- `/feed` - Nourrir +- `/time ` - Contrôle du temps +- `/weather ` - Météo + +## 🔐 Gestion des permissions + +### Opérateurs (OP) + +Donner tous les droits à un joueur : +``` +op +``` + +Retirer les droits : +``` +deop +``` + +### Fichiers de permissions + +- `ops.txt` - Liste des opérateurs +- `white-list.txt` - Liste blanche (si activée) +- `banned-players.txt` - Joueurs bannis +- `banned-ips.txt` - IPs bannies + +## 🛠️ Commandes serveur + +### Console serveur + +Une fois démarré, vous pouvez taper des commandes : + +``` +help # Liste des commandes +op # Donner OP +stop # Arrêter le serveur +save-all # Sauvegarder le monde +list # Liste des joueurs +ban # Bannir un joueur +pardon # Débannir +``` + +### Redémarrage + +1. Dans la console : `stop` +2. Attendre l'arrêt complet +3. Relancer : `./start-docker.sh` + +## 🔧 Maintenance + +### Sauvegardes + +**Sauvegarder le monde** : +```bash +cd server-final +tar -czf backup-$(date +%Y%m%d-%H%M).tar.gz world/ DIM1/ DIM-1/ +``` + +**Restaurer** : +```bash +rm -rf world/ DIM1/ DIM-1/ +tar -xzf backup-YYYYMMDD-HHMM.tar.gz +``` + +### Réinitialiser le monde + +⚠️ **Attention** : Supprime toutes les constructions ! + +```bash +cd server-final +rm -rf world/ DIM1/ DIM-1/ +# Au prochain démarrage, un nouveau monde FLAT sera généré +``` + +### Nettoyer les logs + +```bash +cd server-final +rm -f *.log *.log.* *.lck +rm -rf crash-reports/* +``` + +## 📦 Mods installés + +**21 mods actifs** : +- Chisel - Blocs décoratifs +- WesterosBlocks - Blocs Game of Thrones +- BiblioCraft - Meubles et décorations +- Autoutils - Outils automatiques +- CustomNPCs - PNJs personnalisés +- Flan's Mod - Véhicules et armes +- Netherrocks - Minerais du Nether +- TLSpecialArmor - Armures spéciales +- UniversalElectricity - Électricité +- WeaponMod - Armes +- AquaTweaks - Modifications aquatiques +- Et plus... + +## 🐛 Dépannage + +### Le serveur ne démarre pas + +1. Vérifier que Docker est lancé : `docker ps` +2. Vérifier le port 25565 : `netstat -tuln | grep 25565` +3. Vérifier les logs : `cat server-final/server.log` + +### Erreur "Permission denied" + +Corriger les permissions : +```bash +sudo chown -R $USER:$USER server-final/ +``` + +### Connexion refusée + +1. Vérifier que `online-mode=false` dans `server.properties` +2. Le serveur accepte les comptes crack + +### Lag/performances + +1. Augmenter la RAM dans `start-docker.sh` (changer `-Xmx2G` en `-Xmx4G`) +2. Réduire `view-distance` dans `server.properties` +3. Limiter les entités : `/killall [type]` + +## 🌍 Type de monde + +Le serveur génère un **monde plat** (`level-type=FLAT`) idéal pour : +- Constructions massives +- Villes et nations +- PvP arènes +- Projets créatifs + +Pour changer le type de monde : +1. `stop` dans la console +2. Modifier `level-type` dans `server.properties` (`DEFAULT`, `FLAT`, `LARGEBIOMES`) +3. Supprimer `world/` pour régénérer +4. Redémarrer + +## 📞 Support + +### Logs importants + +- `server.log` - Log principal +- `ForgeModLoader-server-0.log` - Logs Forge/mods +- `crash-reports/` - Rapports de crash + +### Vérifier les mods chargés + +Au démarrage, chercher dans les logs : +``` +[INFO] Forge Mod Loader has successfully loaded 21 mods +``` + +### Commandes de debug + +``` +/forge tps # Performance serveur +/gc # Garbage collector +/mem # Utilisation mémoire +``` + +## 📝 Notes importantes + +- ✅ Le serveur fonctionne avec **Java 7** via Docker +- ✅ Compatible avec les **comptes crack** (online-mode=false) +- ✅ **21 mods** chargés automatiquement +- ✅ **Plugins Bukkit** compatibles 1.6.4 +- ⚠️ Les warnings "anonymous item" sont normaux (compatibilité 1.7) +- ⚠️ Certains items peuvent manquer si le monde a été généré avec d'autres mods + +## 🔄 Mises à jour + +### Ajouter un mod + +1. Placer le `.jar` dans `server-final/mods/` +2. Redémarrer le serveur +3. Vérifier les logs pour les erreurs + +### Ajouter un plugin + +1. Placer le `.jar` dans `server-final/plugins/` +2. Redémarrer le serveur +3. Le plugin se charge automatiquement + +--- + +**Version** : MCPC+ 1.6.4-R2.1-forge965-B251 +**Forge** : 9.11.1.965 +**Minecraft** : 1.6.4 +**Java** : 7 (via Docker) diff --git a/TECHNICAL_NOTES.md b/TECHNICAL_NOTES.md new file mode 100644 index 0000000..d8ecb2a --- /dev/null +++ b/TECHNICAL_NOTES.md @@ -0,0 +1,273 @@ +# 📋 Notes Techniques - Serveur NationsGlory + +## Configuration système + +### Docker Container +```bash +Image: anapsix/alpine-java:7 +Base: Alpine Linux +Java: OpenJDK 1.7.0_80 +Architecture: amd64 +``` + +### Commande de lancement +```bash +docker run -it --rm \ + --ulimit nofile=65535:65535 \ + -p 25565:25565 \ + -v "$PWD":/server \ + anapsix/alpine-java:7 \ + sh -c 'cd /server && java -Xmx2G -Xms1G -XX:+UseG1GC -jar mcpc.jar nogui' +``` + +### Paramètres JVM +- `-Xmx2G` : RAM maximale 2 GB +- `-Xms1G` : RAM initiale 1 GB +- `-XX:+UseG1GC` : Garbage Collector G1 (optimisé pour serveurs) +- `--ulimit nofile=65535:65535` : Limite de fichiers ouverts (évite erreur ENOMEM) + +## Structure Maven (libraries/) + +``` +libraries/ +├── net/minecraft/launchwrapper/1.8/launchwrapper-1.8.jar +├── org/ow2/asm/asm-all/4.1/asm-all-4.1.jar +├── org/scala-lang/ +│ ├── scala-library/2.10.2/scala-library-2.10.2.jar +│ └── scala-compiler/2.10.2/scala-compiler-2.10.2.jar +├── lzma/lzma/0.0.1/lzma-0.0.1.jar +└── net/sf/jopt-simple/jopt-simple/4.5/jopt-simple-4.5.jar +``` + +## Mods chargés (21) + +1. **mcp** - Minecraft Coder Pack +2. **FML** - Forge Mod Loader +3. **Forge** - Minecraft Forge 9.11.1.965 +4. **AquaTweaks** - Modifications aquatiques +5. **etfuturum** - Fonctionnalités futures +6. **bspkrsCore** - Bibliothèque de base +7. **CalclaviaCore** - Core pour mods électriques +8. **Autoutils** - Outils automatiques +9. **Chisel** - Blocs décoratifs variés +10. **customnpcs** - PNJs personnalisables +11. **FlansMod** - Véhicules, avions, armes +12. **MattCore** - Core de base +13. **model-api** - API de modèles +14. **nabot** - Mod NationsGlory +15. **netherrocks** - Minerais du Nether +16. **BiblioCraft** - Meubles et décorations +17. **ParachuteMod** - Parachutes +18. **TLSpecialArmor** - Armures spéciales +19. **UniversalElectricity** - Système électrique +20. **weaponmod** - Armes avancées +21. **WesterosBlocks** - Blocs Game of Thrones + +## Plugins Bukkit (2) + +### WorldEdit +- Version: Compatible Bukkit 1.6.4 +- Taille: 8.8 KB +- Source: dev.bukkit.org/projects/worldedit/files/562101 + +### Essentials +- Version: Compatible Bukkit 1.6.4 +- Taille: 8.8 KB +- Source: dev.bukkit.org/projects/essentials/files/862412 + +## Fichiers de configuration + +### server.properties (principaux paramètres) +```properties +server-port=25565 +max-players=20 +gamemode=1 +difficulty=0 +spawn-monsters=false +spawn-npcs=true +spawn-animals=true +pvp=false +level-type=FLAT +level-name=world +online-mode=false +allow-flight=true +view-distance=10 +``` + +### bukkit.yml +Configuration Bukkit par défaut générée automatiquement. + +### spigot.yml +Configuration Spigot (intégré dans MCPC+). + +### forge.cfg +Configuration Forge pour le chargement des mods. + +## Permissions système + +### Propriétaire des fichiers +```bash +innotex:innotex - Fichiers utilisateur +root:root - Fichiers générés par Docker (world, config, etc.) +``` + +### Correction des permissions si nécessaire +```bash +sudo chown -R innotex:innotex /home/innotex/Documents/Projet/Serveur\ NationsGlory/server-final/ +``` + +## Ports réseau + +- **25565/TCP** : Port Minecraft principal +- Mappé avec `-p 25565:25565` dans Docker + +## Logs et monitoring + +### Fichiers de logs +``` +server.log - Log principal temps réel +ForgeModLoader-server-0.log - Logs Forge +*.log.lck - Fichiers de verrouillage (ne pas supprimer pendant exécution) +crash-reports/ - Rapports de crash +``` + +### Rotation des logs +Les logs sont automatiquement archivés : +- `server.log.1`, `server.log.2`, etc. +- `ForgeModLoader-server-0.log.1`, etc. + +## Performances + +### Métriques observées +- Démarrage: ~0.8 secondes +- RAM utilisée: ~1.2 GB en fonctionnement +- CPU: Variable selon nombre de joueurs + +### Optimisations appliquées +- G1GC pour réduction des pauses GC +- ulimit nofile élevé (65535) +- view-distance modéré (10 chunks) + +## Problèmes connus et solutions + +### SEVERE: Anonymous items +**Problème**: Messages "anonymous item will NOT survive a 1.7 upgrade" +**Impact**: Aucun sur Minecraft 1.6.4 +**Solution**: Ignorer, avertissements pour migration future + +### Item discrepancies (IDs 2054, 4095) +**Problème**: Items manquants de mods +**Impact**: Avertissements au démarrage, pas de crash +**Solution**: Monde généré avec config différente, supprimable si besoin + +### Invalid material warnings (WesterosBlocks) +**Problème**: Material 'stone' et step sound 'dirt' invalides +**Impact**: Minimal, blocs fonctionnels +**Solution**: Problème de mod, ignorer + +### MattparksCore update check failed +**Problème**: Échec de vérification de mise à jour +**Impact**: Aucun, fonctionnalité cosmétique +**Solution**: Ignorer ou désactiver dans config + +## Compatibilité + +### Client Minecraft +- Version requise: **1.6.4** +- Launcher: NationsGlory, MultiMC, ou launcher officiel avec profile 1.6.4 +- Mods client: Même liste que serveur recommandée + +### Système d'exploitation +- ✅ Linux (testé sur Debian 13) +- ✅ Windows (via Docker Desktop) +- ✅ macOS (via Docker Desktop) + +### Dépendances +- Docker 20.10+ +- 4 GB RAM système minimum +- 1 GB espace disque + +## Backup et restauration + +### Fichiers critiques à sauvegarder +``` +server-final/world/ # Monde principal +server-final/DIM1/ # Nether (si existe) +server-final/DIM-1/ # End (si existe) +server-final/ops.txt # Opérateurs +server-final/white-list.txt # Liste blanche +server-final/banned-*.txt # Bans +``` + +### Script de backup automatique +```bash +#!/bin/bash +cd /home/innotex/Documents/Projet/Serveur\ NationsGlory/server-final +DATE=$(date +%Y%m%d-%H%M) +tar -czf ../backups/world-$DATE.tar.gz world/ DIM*/ +echo "Backup créé: world-$DATE.tar.gz" +``` + +## Commandes utiles + +### Monitoring +```bash +# Voir les processus Docker +docker ps + +# Logs en temps réel +docker logs -f + +# Utilisation ressources +docker stats + +# Joueurs connectés +grep "logged in" server-final/server.log | tail -10 +``` + +### Maintenance +```bash +# Arrêt propre +docker stop + +# Forcer l'arrêt (déconseillé) +docker kill + +# Nettoyer les conteneurs arrêtés +docker container prune +``` + +## Sécurité + +### Points d'attention +- ⚠️ **online-mode=false** : Pas d'authentification Mojang +- ⚠️ **Aucun firewall** : Port 25565 exposé +- ⚠️ **Pas de whitelist** : Serveur public par défaut + +### Recommandations +1. Activer whitelist pour serveur privé +2. Utiliser iptables pour filtrer IPs +3. Configurer les permissions via OP +4. Sauvegardes régulières + +## Version Control (.gitignore) + +### Fichiers exclus +- `*.log` - Logs +- `world/` - Monde (optionnel) +- `crash-reports/` - Rapports de crash +- `cache/`, `debug/` - Fichiers temporaires +- `ops.txt`, `banned-*.txt` - Fichiers sensibles + +### Fichiers versionnés +- `server-final/mcpc.jar` - Exécutable serveur +- `server-final/start-docker.sh` - Script de démarrage +- `server-final/server.properties` - Configuration +- `server-final/mods/` - Mods +- `server-final/plugins/` - Plugins +- Documentation (README, etc.) + +--- + +**Dernière mise à jour**: 3 février 2026 +**Mainteneur**: Configuration automatique GitHub Copilot diff --git a/TRANSFER-REMOTE.md b/TRANSFER-REMOTE.md new file mode 100644 index 0000000..9c7c1e0 --- /dev/null +++ b/TRANSFER-REMOTE.md @@ -0,0 +1,249 @@ +# 🚀 Guide de transfert vers 192.168.1.252 + +## Configuration SSH (si pas encore fait) + +### Étape 1 : Générer une clé SSH + +```bash +ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N "" +``` + +### Étape 2 : Copier la clé sur la machine distante + +```bash +ssh-copy-id -i ~/.ssh/id_ed25519.pub innotex@192.168.1.252 +``` + +Entrez le mot de passe de l'utilisateur innotex sur 192.168.1.252 + +### Étape 3 : Tester la connexion + +```bash +ssh innotex@192.168.1.252 "echo ✅ Connexion OK" +``` + +## Transfert du serveur + +### Lancer le transfert + +```bash +cd "/home/innotex/Documents/Projet/Serveur NationsGlory" +./transfer-remote.sh innotex@192.168.1.252 +``` + +**Le script va:** +1. Créer une archive compressée (~150 MB) +2. Transférer via SCP (quelques secondes) +3. Décompresser sur la machine distante +4. Créer le répertoire `~/mcserveur/` +5. Configurer Docker Compose + +### Connexion à la machine distante + +```bash +ssh innotex@192.168.1.252 +cd mcserveur +ls -la +``` + +## Démarrage du serveur sur 192.168.1.252 + +### 1. Vérifier Docker + +```bash +docker --version +docker-compose --version +``` + +Si Docker n'est pas installé, voir section ci-dessous. + +### 2. Configurer le fichier .env + +```bash +cd ~/mcserveur +cp .env.example .env +nano .env # Éditer si nécessaire +``` + +### 3. Démarrer le serveur + +```bash +make start +# ou: docker-compose up -d +``` + +### 4. Voir les logs + +```bash +make logs +# ou: docker-compose logs -f +``` + +### 5. Se connecter au serveur Minecraft + +- **Adresse** : `192.168.1.252:25565` +- **Version** : Minecraft 1.6.4 +- **Mode** : Créatif +- **Comptes crack** : Acceptés (online-mode=false) + +## Installation de Docker (si nécessaire) + +### Sur la machine distante (192.168.1.252) + +```bash +# Installation Docker +curl -fsSL https://get.docker.com | sh + +# Installation Docker Compose +sudo apt install docker-compose + +# Ajouter l'utilisateur au groupe docker +sudo usermod -aG docker $USER +newgrp docker + +# Vérifier +docker --version +docker-compose --version +``` + +Puis relancer le serveur avec `make start` + +## Commandes essentielles sur le serveur distant + +```bash +cd ~/mcserveur + +# Démarrer +make start + +# Arrêter +make stop + +# Redémarrer +make restart + +# Logs +make logs + +# Console serveur +make console + +# Sauvegarder +make backup + +# État +make status + +# Aide +make help +``` + +## Structure sur la machine distante + +``` +~/mcserveur/ +├── docker-compose.yml # Configuration Docker +├── .env # Variables (MEMORY, PORT, etc.) +├── Makefile # Commandes make +├── data/ # mcpc.jar, server.properties +├── mods/ # Mods Forge +├── plugins/ # WorldEdit, Essentials +├── config/ # Configurations mods +├── libraries/ # Dépendances +├── world/ # Monde Minecraft +└── backups/ # Sauvegardes +``` + +## Accès au serveur Minecraft depuis votre PC + +Lancez Minecraft 1.6.4 → Multijoueur → Ajouter serveur + +- **Nom** : NationsGlory +- **Adresse** : `192.168.1.252:25565` + +Cliquez sur "Rejoindre le serveur" + +## Dépannage + +### Le transfert échoue + +```bash +# Vérifier SSH +ssh innotex@192.168.1.252 "echo OK" + +# Vérifier l'espace disque sur 192.168.1.252 +ssh innotex@192.168.1.252 "df -h" + +# Vérifier le fichier archive +ls -lh nationsglory-*.tar.gz +``` + +### Le serveur ne démarre pas + +```bash +cd ~/mcserveur +make logs # Voir les erreurs + +# Vérifier Docker +docker ps +docker-compose ps + +# Vérifier les permissions +ls -la data/ +``` + +### Problème de port + +Si le port 25565 est déjà utilisé, modifier `.env` : + +```env +MINECRAFT_PORT=25566 +``` + +Puis : `make restart` + +## Sauvegarde et maintenance + +### Créer un backup + +```bash +cd ~/mcserveur +make backup +``` + +Crée : `backups/world-YYYYMMDD-HHMM.tar.gz` + +### Télécharger un backup + +Depuis votre machine locale : + +```bash +scp innotex@192.168.1.252:~/mcserveur/backups/world-*.tar.gz ~/backups/ +``` + +### Restaurer un backup + +```bash +cd ~/mcserveur +docker-compose down +tar -xzf backups/world-YYYYMMDD-HHMM.tar.gz +docker-compose up -d +``` + +## Documentation complète + +Tous les fichiers *.md sont disponibles dans `~/mcserveur/` : + +- `README.md` - Guide complet +- `DOCKER.md` - Documentation Docker +- `DEPLOYMENT.md` - Déploiement avancé +- `QUICKSTART.md` - Démarrage rapide +- `INDEX.md` - Navigation documentation + +--- + +**Prêt à transférer ?** + +```bash +./transfer-remote.sh innotex@192.168.1.252 +``` diff --git a/config/AnimalBikes.cfg b/config/AnimalBikes.cfg new file mode 100755 index 0000000..a6ced9f --- /dev/null +++ b/config/AnimalBikes.cfg @@ -0,0 +1,8 @@ +#Bike uses until it breaks, 0 will make them unbreaking +ItemUses=50 + +#Change to set the start of the item id range +ItemStartID=25750 + +#Change to set the start of the entity id range +EntityStartID=200 \ No newline at end of file diff --git a/config/AquaTweaks.cfg b/config/AquaTweaks.cfg new file mode 100755 index 0000000..5898105 --- /dev/null +++ b/config/AquaTweaks.cfg @@ -0,0 +1,12 @@ +# Configuration file + +#################### +# tweaks +#################### + +tweaks { + S:manualTweaks=This string array can be used to add blocks manually to AquaTweaks. Note that these need to be the proper registry names. The cobblestone wall added here can also be removed. They are optional but might be useful for people who use the walls as pillars or something. + S:tweakGlass=Set to false to re-enable water rendering its sides towards glass +} + + diff --git a/config/ArmorStatusHUD.cfg b/config/ArmorStatusHUD.cfg new file mode 100755 index 0000000..4567abf --- /dev/null +++ b/config/ArmorStatusHUD.cfg @@ -0,0 +1,47 @@ +# Configuration file + +general { + # Valid alignment strings are topleft, topcenter, topright, middleleft, middlecenter, middleright, bottomleft, bottomcenter, bottomright [default: bottomleft] + S:alignMode=middleleft + + # Set to true if you want the xOffset value to be applied when using a center alignment [default: false] + B:applyXOffsetToCenter=false + + # Set to true if you want the yOffset value to be applied when using a middle alignment [default: false] + B:applyYOffsetToMiddle=false + + # This is a list of percent damage thresholds and text color codes that will be used when item damage is <= the threshold. Format used: "," separates the threshold and the color code, ";" separates each pair. Valid color values are 0-9, a-f (color values can be found here: http://www.minecraftwiki.net/wiki/File:Colors.png) [default: 100,f; 80,7; 60,e; 40,6; 25,c; 10,4] + S:damageColorList=100,f; 80,7; 60,e; 40,6; 25,c; 10,4 + + # Valid damageDisplayType strings are value, percent, or none [default: value] + S:damageDisplayType=value + + # The type of threshold to use when applying the damageColorList thresholds. Valid values are "percent" and "value". [default: percent] + S:damageThresholdType=percent + + # Set to true to show item names, false to disable [default: false] + B:enableItemName=false + + # Set to true to show info for your currently equipped item, false to disable [default: true] + B:showEquippedItem=true + + # Set to true to show info when chat is open, false to disable info when chat is open [default: false] + B:showInChat=false + + # Set to true to show the standard inventory item overlay (damage bar) [default: true] + B:showItemOverlay=true + + # Set to true to show the max damage when damageDisplayType=value [default: false] + B:showMaxDamage=false + + # Horizontal offset from the edge of the screen (when using right alignments the x offset is relative to the right edge of the screen) [range: -2147483648 ~ 2147483647, default: 2] + I:xOffset=2 + + # Vertical offset from the edge of the screen (when using bottom alignments the y offset is relative to the bottom edge of the screen) [range: -2147483648 ~ 2147483647, default: 2] + I:yOffset=2 + + # Vertical offset used only for the bottomcenter alignment to avoid the vanilla HUD [range: -2147483648 ~ 2147483647, default: 41] + I:yOffsetBottomCenter=41 +} + + diff --git a/config/Autoutils.cfg b/config/Autoutils.cfg new file mode 100644 index 0000000..e69de29 diff --git a/config/BiblioCraft.cfg b/config/BiblioCraft.cfg new file mode 100755 index 0000000..847f00e --- /dev/null +++ b/config/BiblioCraft.cfg @@ -0,0 +1,124 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:ArmorStand=2249 + I:Bookcase=2250 + I:GenericShelf=2254 + I:Lamp=2244 + I:Lantern=2243 + I:MapFrame=2290 + I:MoreStuffs=2242 + I:PotionShelf=2252 + I:PrintingPress=2247 + I:Seat=2291 + I:Table=2245 + I:TypeMachine=2246 + I:WeaponCase=2255 + I:WeaponRack=2253 + I:WoodenLabel=2251 + I:WritingDesk=2248 +} + + +#################### +# custom enchantments +#################### + +"custom enchantments" { + I:ReadingEnchant=188 +} + + +#################### +# general +#################### + +general { + # These are keywords that add additional support for more types of discs and items that are allowed to be placed on the disc rack. Add more keywords if you wish to allow more types of items to be displayed + S:AdditionalDiscs=disc, disk + + # These are keywords that add additional support for more types of potions and items. Add more keyworks if you wish to allow more types of items to be displayed. + S:AdditionalPotions=essence, mead, bottle, test, element, molecule, can, capsule, cell, catalyst, ambrosia, honey pot, dissipation, vial, juice + + # These are the names of additional tools that can be added to the Tool Rack. Added keywords will allow additional items to be placed on this block. + S:AdditionalTools=sprayer, wand, rod, scepter, wrench, screwdriver, meter, handsaw, gun, cutter, scoop, soldering, painter, reader, shovel, grafter, pickaxe, pipette, magnifying, sword, axe, hammer + + # Should blank books be allowed on Bookcases? (true or false) + B:AllowEmptyBooks=false + + # These are the keywords that are compared against the item names to determine if the item can be placed on a Bookcase. Add more keywords if needed. + S:AllowedBooks=book, map, journal, plan, thaumonomicon, necronomicon, lexicon, print, notes, spell, library, tome, encyclopedia + + # Setting this to false will deactivate the redstone signal output from seats when a player is sitting + B:ChairRedstone=true + + # Setting this to false will permanently disable update checking + B:CheckForUpdates=false + + # Setting this to true will disable all renderers. This will allow a world to be loaded and a problem item removed from a BiblioCraft block in case of a rendering related crash. + B:DisableRenderers=false + + # This will multiply the cost of copying enchanted books on the typesetting table. Please enter a positive integer value. Default is 10. Setting this to 1 would make the enchatment cost 1/10 the level default cost. + I:EnchantmentCostMultiplyer=10 + + # Default is 1 update per 10 ticks, just like Item Frames. The number indicates how many ticks before an update packet is sent to clients. Lower numbers means more, faster updates. + I:MapUpdateRate=10 + + # This will set the max number of uses an Enchanted Plate has before breaking. Default is 3. + I:MaxEnchantedPlateUses=3 + + # Setting to true renders a shadow behind the text seen with the reading glasses. This can improve visability quite a bit, but sometimes doesn't render correctly. Try at your own discretion. + B:RenderTextShadow=false +} + + +#################### +# item +#################### + +item { + I:Atlas=22233 + I:Chase=22224 + I:ClipBoard=22232 + I:CreativeModeLock=22231 + I:EnchantedPlate=22228 + I:MapTool=22234 + I:Plate=22225 + I:ReadingGlasses=22227 + I:RedstoneBook=22226 + I:ScrewGun=22230 + I:SeatBack=22236 + I:SeatBack2=22237 + I:SeatBack3=22238 + I:SeatBack4=22239 + I:SeatBack5=22240 + I:TapeMeasure=22222 + I:TapeReel=22223 + I:WaypointCompass=22235 +} + + +#################### +# stored variables +#################### + +"stored variables" { + S:lastVersionChecked=1.6.5 +} + + +#################### +# text colors +#=================== +# This is were you can change the color of the text rendered on blocks when using the reading glasses. The value given is a combined RGB value. For ex. 16777215=white, 255=red, 65280=green, 16711680=blue, 16776960=aqua. A google search for these values can assit in finding a chart to show colors and codes. +#################### + +"text colors" { + I:ReadingGlassesTextColor=16777215 +} + + diff --git a/config/Calclavia.cfg b/config/Calclavia.cfg new file mode 100755 index 0000000..49233e9 --- /dev/null +++ b/config/Calclavia.cfg @@ -0,0 +1,131 @@ +# Configuration file + +#################### +# """""""""""""""""""""""""""""""""""""""""""""""""""""""""allow load items""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +#################### + +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""allow load items"""""""""""""""""""""""""""""""""""""""""""""""""""""""""" { + B:blockOreCopper=true + B:blockOreTin=true + B:itemCircuitAdvanced=true + B:itemCircuitBasic=true + B:itemCircuitElite=true + B:itemDustBronze=true + B:itemDustSteel=true + B:itemIngotBronze=true + B:itemIngotCopper=true + B:itemIngotSteel=true + B:itemIngotTin=true + B:itemMotor=true + B:itemPlateBronze=true + B:itemPlateCopper=true + B:itemPlateGold=true + B:itemPlateIron=true + B:itemPlateSteel=true + B:itemPlateTin=true + B:itemWrench=true +} + + +#################### +# block +#################### + +block { + I:creativeBuilder=3803 + I:infinite=3805 + I:multiPart=3802 +} + + +#################### +# crafting +#################### + +crafting { + B:"Allow item.calclavia:circuitAdvanced Crafting"=true + B:"Allow item.calclavia:circuitBasic Crafting"=true + B:"Allow item.calclavia:circuitElite Crafting"=true + B:"Allow item.calclavia:dustBronze Crafting"=true + B:"Allow item.calclavia:dustSteel Crafting"=true + B:"Allow item.calclavia:motor Crafting"=true + B:"Allow item.calclavia:plateBronze Crafting"=true + B:"Allow item.calclavia:plateCopper Crafting"=true + B:"Allow item.calclavia:plateGold Crafting"=true + B:"Allow item.calclavia:plateIron Crafting"=true + B:"Allow item.calclavia:plateSteel Crafting"=true + B:"Allow item.calclavia:plateTin Crafting"=true + B:"Allow item.calclavia:screwdriver Crafting"=true +} + + +#################### +# """""""""""""""""""""""""""""""""""""""""""""""""""""""""disable poison""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +#################### + +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""disable poison"""""""""""""""""""""""""""""""""""""""""""""""""""""""""" { + B:"Disable Chemical"=false + B:"Disable Contagious"=false +} + + +#################### +# general +#################### + +general { + B:Enable_Calclavia_Core_Resources=true + B:Enable_Calclavia_Core_Tools=true + B:Enable_Waila_Support=true + D:steamMultiplier=1.0 +} + + +#################### +# item +#################### + +item { + I:circuitAdvanced=13973 + I:circuitBasic=13972 + I:circuitElite=13974 + I:dustBronze=13986 + I:dustSteel=13985 + I:ingotBronze=13984 + I:ingotCopper=13981 + I:ingotSteel=13983 + I:ingotTin=13982 + I:motor=13971 + I:oreCopper=3970 + I:oreTin=3801 + I:plateBronze=13977 + I:plateCopper=13975 + I:plateGold=13980 + I:plateIron=13979 + I:plateSteel=13978 + I:plateTin=13976 + I:screwdriver=13970 +} + + +#################### +# ore_generation +#################### + +ore_generation { + B:"Generate oreCopper"=false + B:"Generate oreTin"=false +} + + +#################### +# """""""""""""""""""""""""""""""""""""""""""""""""""""""""potion id""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +#################### + +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""potion id"""""""""""""""""""""""""""""""""""""""""""""""""""""""""" { + I:"frostBite ID"=61 + I:"toxin ID"=59 + I:"virus ID"=60 +} + + diff --git a/config/Chisel.cfg b/config/Chisel.cfg new file mode 100644 index 0000000..7f3b85c --- /dev/null +++ b/config/Chisel.cfg @@ -0,0 +1,154 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:blockDiamond=2792 + I:blockEmerald=2795 + I:blockGold=2804 + I:blockIron=2790 + I:blockLapis=2794 + I:blockLimestone=2762 + I:blockLimestoneSlab.bottom=2764 + I:blockLimestoneSlab.top=2807 + I:blockLimestoneStairs.0=2816 + I:blockLimestoneStairs.1=2817 + I:blockLimestoneStairs.2=2818 + I:blockLimestoneStairs.3=2819 + I:blockLimestoneStairs.4=2820 + I:blockLimestoneStairs.5=2821 + I:blockLimestoneStairs.6=2822 + I:blockLimestoneStairs.7=2823 + I:blockMarble=2761 + I:blockMarblePillar=2765 + I:blockMarblePillarSlab.bottom=2766 + I:blockMarblePillarSlab.top=2806 + I:blockMarbleSlab.bottom=2763 + I:blockMarbleSlab.top=2805 + I:blockMarbleStairs.0=2808 + I:blockMarbleStairs.1=2809 + I:blockMarbleStairs.2=2810 + I:blockMarbleStairs.3=2811 + I:blockMarbleStairs.4=2812 + I:blockMarbleStairs.5=2813 + I:blockMarbleStairs.6=2814 + I:blockMarbleStairs.7=2815 + I:blockRedstone=2832 + I:bookshelf=2837 + I:carpet=2836 + I:carpetFloor=2844 + I:carpetNewFloor=2909 + I:cloud=2842 + I:concrete=2781 + I:dirt=2839 + I:factory=2843 + I:factory2=2987 + I:fenceIron=2802 + I:fft=2835 + I:glass=2788 + I:hellrock=2797 + I:holystone=2833 + I:icePillar=2775 + I:iceStairs.0=2824 + I:iceStairs.1=2825 + I:iceStairs.2=2826 + I:iceStairs.3=2827 + I:iceStairs.4=2828 + I:iceStairs.5=2829 + I:iceStairs.6=2830 + I:iceStairs.7=2831 + I:lavastone=2834 + I:lightgem=2793 + I:netherBrick=2796 + I:newCarpet=2904 + I:obsidian=2801 + I:roadLine=2782 + I:sandSnakestone=2784 + I:sandStone=2789 + I:sandstoneScribbles=2780 + I:snakestone=2783 + I:snakestoneObsidian=2785 + I:stoneMoss=2798 + I:stonebrick=2787 + I:stonebricksmooth=2799 + I:temple=2840 + I:templeMossy=2841 + I:thinGlass=2803 + I:tyrian=2838 + I:wood-birch=2779 + I:wood-jungle=2537 + I:wood-oak=2777 + I:wood-spruce=2778 +} + + +#################### +# general +#################### + +general { + # Changes pane rendering algorithm a bit. + B:"Add panes"=true + + # Use alternative crafting recipe for the chisel + B:"Alternative recipe"=false + + # Amount of limestone to generate in the world; use 0 for none + I:"Worldgen limestone amount"=4 + + # Amount of marble to generate in the world; use 0 for none + I:"Worldgen marble amount"=8 + + # Traversing concrete roads, players will acceleration to this velocity. For reference, normal running speed is about 0.28. Set to 0 to disable acceleration. + D:"concrete velocity"=0.45 + + # Disable connected textures + B:"disable connected textures"=false + + # Some blocks, like bookshelves and ice will not get overridden using "override vanilla blocks" setting. Set this to true to disable all overriding. + B:"disable overriding blocks"=false + + # Reworks ice blocks to drop Ice shards when destroyed + B:"ice drops ice shards"=true + + # Use old pillar textures + B:"old pillar graphics"=false + + # If true, will override vanilla blocks with their chisel variations. If false, will create one new chiseled block for each vanilla block that can be chiseled. + B:"override vanilla blocks"=false + + # Particle tick rate. Greater value = less particles. + I:"particle tickrate"=1 + + # Make variations of blocks have the same name, and use the description in tooltip to distinguish them. + B:"use block descriptions in tooltips"=true + + # Add a new tab in creative mode and put all blocks that work with chisel there. + B:"use custom creative tab"=true +} + + +#################### +# item +#################### + +item { + I:ballOMoss=7814 + I:chisel=7811 + I:cloudInABottle=7813 + I:iceshard=7812 +} + + +#################### +# tweaks +#################### + +tweaks { + # Unlocalized name of the block that, when burned, will produce concrete (examples: lightgem, stone) + S:"concrete recipe block"=gravel +} + + diff --git a/config/CustomNpcs.cfg b/config/CustomNpcs.cfg new file mode 100755 index 0000000..e14a775 --- /dev/null +++ b/config/CustomNpcs.cfg @@ -0,0 +1,31 @@ +#Disable Chat Bubbles +EnableChatBubbles=true + +DisableExtraNpcItems=false + +#Default Item ID range is from 26700 +ItemStartId=26700 + +#Default Block ID range is from 1525 +BlockStartId=1525 + +#Uses unique entities ids +UseUniqueEntities=false + +#To use this UseUniqueEntities has to be false +EntityStartId=128 + +#Navigation search range for NPCs. Not recommended to increase if you have a slow pc or on a server +NpcNavRange=32 + +#Set to true if you want the dialog command option to be able to use op commands like tp etc +NpcUseOpCommands=false + +InventoryGuiEnabled=true + +#Enables CustomNpcs startup update message +EnableUpdateChecker=false + +#Only ops can create and edit npcs +OpsOnly=true + diff --git a/config/DragonsRadioMod.cfg b/config/DragonsRadioMod.cfg new file mode 100755 index 0000000..d95c944 --- /dev/null +++ b/config/DragonsRadioMod.cfg @@ -0,0 +1,23 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:blockRadio=646 +} + + +#################### +# general +#=================== +# forceURL true will force only using default URL, defaultURL will be in radio by default when placed. +#################### + +general { + S:defaultURL=http://listen.radionomy.com/radionationsgloryserveur + B:forceURL=true +} + + diff --git a/config/FlansMod.cfg b/config/FlansMod.cfg new file mode 100755 index 0000000..f9bb3ba --- /dev/null +++ b/config/FlansMod.cfg @@ -0,0 +1,14 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:"Check Bullet"=4092 + I:"Crafting Table"=4095 + I:"Gun Box"=4093 + I:"Team Spawner"=4094 +} + + diff --git a/config/Galacticraft/chunkloading.conf b/config/Galacticraft/chunkloading.conf new file mode 100755 index 0000000..9add105 --- /dev/null +++ b/config/Galacticraft/chunkloading.conf @@ -0,0 +1,12 @@ +# Configuration file + +#################### +# chunkloading +#################### + +chunkloading { + # If you don't want each player's chunks to load when they log in, set to false. + B:LoadOnLogin=true +} + + diff --git a/config/Galacticraft/edora.conf b/config/Galacticraft/edora.conf new file mode 100755 index 0000000..e453d1d --- /dev/null +++ b/config/Galacticraft/edora.conf @@ -0,0 +1,12 @@ +# Configuration file + +#################### +# dimensions +#################### + +dimensions { + I:"Edora Dimension ID"=-31 + I:"EdoraAsteroids Dimension ID"=-32 +} + + diff --git a/config/Galacticraft/mars.conf b/config/Galacticraft/mars.conf new file mode 100755 index 0000000..d50bcfa --- /dev/null +++ b/config/Galacticraft/mars.conf @@ -0,0 +1,95 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:idBlockBacterialSludge=3391 + I:idBlockCreeperEgg=3396 + I:idBlockMachine=3395 + I:idBlockMars=3390 + I:idBlockRock=3393 + I:idBlockTintedGlassPane=3397 + I:idBlockTreasureChestT2=3394 + I:idBlockVine=3392 +} + + +#################### +# dimensions +#################### + +dimensions { + I:"Mars Dimension ID"=-29 +} + + +#################### +# entities +#################### + +entities { + I:idEntityCargoRocket=178 + I:idEntityCreeperBoss=171 + I:idEntityLandingBalloons=177 + I:idEntityProjectileTNT=172 + I:idEntitySlimeling=175 + I:idEntitySludgeling=174 + I:idEntitySpaceshipTier2=173 + I:idEntityTerraformBubble=176 +} + + +#################### +# general +#################### + +general { + B:"Generate other mod's features on Mars"=false + B:"Whether launch controller keeps chunks loaded. This will cause issues if disabled."=true +} + + +#################### +# gui +#################### + +gui { + I:idGuiCargoRocketCraftingBench=147 + I:idGuiMachine=146 + I:idGuiRocketCraftingBenchT2=143 +} + + +#################### +# item +#################### + +item { + I:idArmorDeshBoots=9915 + I:idArmorDeshChestplate=9913 + I:idArmorDeshHelmet=9912 + I:idArmorDeshLeggings=9914 + I:idItemKeyT2=9916 + I:idItemMarsBasic=9905 + I:idItemSchematicMars=9917 + I:idItemSpaceshipTier2=9906 + I:idToolDeshAxe=9911 + I:idToolDeshHoe=9910 + I:idToolDeshPickaxe=9908 + I:idToolDeshSpade=9909 + I:idToolDeshSword=9907 +} + + +#################### +# schematic +#################### + +schematic { + I:idSchematicCargoRocket=3 + I:idSchematicRocketT2=2 +} + + diff --git a/config/Galacticraft/moon.conf b/config/Galacticraft/moon.conf new file mode 100755 index 0000000..759547b --- /dev/null +++ b/config/Galacticraft/moon.conf @@ -0,0 +1,46 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:idBlockCheese=3348 + + # This can be above 256, even though it is generated in the world + I:idBlockMoon=3347 +} + + +#################### +# dimensions +#################### + +dimensions { + I:"Moon Dimension ID"=-28 +} + + +#################### +# general +#################### + +general { + B:"Disable Cheese Ore Gen on Moon"=false + B:"Disable Moon Village Gen"=false + B:"Generate other mod's features on Moon"=false +} + + +#################### +# item +#################### + +item { + I:idItemBlockCheese=9853 + I:idItemCheeseCurd=9851 + I:idItemMeteoricIronIngot=9854 + I:idItemMeteoricIronRaw=9852 +} + + diff --git a/config/Galacticraft/power.conf b/config/Galacticraft/power.conf new file mode 100755 index 0000000..88f5290 --- /dev/null +++ b/config/Galacticraft/power.conf @@ -0,0 +1,15 @@ +# Configuration file + +#################### +# compatiblity +#################### + +compatiblity { + D:"BuildCraft Conversion Ratio"=0.38999998569488525 + B:"IC2 machines can be given more than a safe amount of cofh.gregtechmod.ic2.mekanism.api.energy from aluminium wire? [caution: if true, they may explode]"=false + D:"IndustrialCraft Conversion Ratio"=0.1599999964237213 + D:"Mekanism Conversion Ratio"=0.0015999999595806003 + D:"Thermal Expansion Conversion Ratio"=0.038999997079372406 +} + + diff --git a/config/GetAllTheSeeds.cfg b/config/GetAllTheSeeds.cfg new file mode 100755 index 0000000..77a9146 --- /dev/null +++ b/config/GetAllTheSeeds.cfg @@ -0,0 +1,14 @@ +# Configuration file + +#################### +# general +#################### + +general { + I:carrotRarity=1 + I:melonseedRarity=1 + I:potatoRarity=1 + I:pumpkinseedRarity=1 +} + + diff --git a/config/ICBM.cfg b/config/ICBM.cfg new file mode 100755 index 0000000..8fcd949 --- /dev/null +++ b/config/ICBM.cfg @@ -0,0 +1,266 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:box=3889 + I:camouflage=3885 + I:concrete=3886 + I:explosive=3892 + I:glassButton=3882 + I:glassPressurePlate=3881 + I:iCBMMachine=3893 + I:missileAssembler=3894 + I:proximityDetector=3883 + I:reinforcedGlass=3887 + I:reinforcedRail=3888 + I:spikes=3884 + I:sulfurOre=3880 + I:turret=3890 + I:turretPlatform=3891 +} + + +#################### +# crafting +#################### + +crafting { + B:"Allow Chemical Crafting"=false + B:"Allow Contagious Crafting"=false + B:"Allow EMP Tower Crafting"=false + B:"Allow antiBallistic Minecart Crafting"=false + B:"Allow antiBallistic Missile Crafting"=false + B:"Allow antiGravitational Crafting"=false + B:"Allow antiGravitational Missile Crafting"=false + B:"Allow antimatter Crafting"=false + B:"Allow antimatter Missile Crafting"=false + B:"Allow anvil Crafting"=false + B:"Allow anvil Grenade Crafting"=false + B:"Allow anvil Minecart Crafting"=false + B:"Allow anvil Missile Crafting"=false + B:"Allow attractive Crafting"=false + B:"Allow attractive Grenade Crafting"=false + B:"Allow attractive Minecart Crafting"=false + B:"Allow attractive Missile Crafting"=false + B:"Allow breaching Crafting"=false + B:"Allow breaching Minecart Crafting"=false + B:"Allow breaching Missile Crafting"=false + B:"Allow chemical Grenade Crafting"=false + B:"Allow chemical Minecart Crafting"=false + B:"Allow chemical Missile Crafting"=false + B:"Allow cluster Minecart Crafting"=false + B:"Allow cluster Missile Crafting"=false + B:"Allow condensed Crafting"=false + B:"Allow condensed Grenade Crafting"=false + B:"Allow condensed Minecart Crafting"=false + B:"Allow condensed Missile Crafting"=false + B:"Allow contagious Minecart Crafting"=false + B:"Allow contagious Missile Crafting"=false + B:"Allow debilitation Crafting"=false + B:"Allow debilitation Grenade Crafting"=false + B:"Allow debilitation Minecart Crafting"=false + B:"Allow debilitation Missile Crafting"=false + B:"Allow drill Missile Crafting"=true + B:"Allow earthquake Missile Crafting"=true + B:"Allow emp Crafting"=false + B:"Allow emp Minecart Crafting"=true + B:"Allow emp Missile Crafting"=false + B:"Allow endBringer Missile Crafting"=true + B:"Allow ender Crafting"=false + B:"Allow ender Missile Crafting"=false + B:"Allow endothermic Crafting"=false + B:"Allow endothermic Missile Crafting"=false + B:"Allow exothermic Crafting"=false + B:"Allow exothermic Missile Crafting"=false + B:"Allow fragmentation Crafting"=false + B:"Allow fragmentation Minecart Crafting"=false + B:"Allow fragmentation Missile Crafting"=false + B:"Allow homing Grenade Crafting"=false + B:"Allow homing Minecart Crafting"=false + B:"Allow homing Missile Crafting"=false + B:"Allow hypersonic Crafting"=false + B:"Allow hypersonic Missile Crafting"=false + B:"Allow incendiary Crafting"=false + B:"Allow incendiary Grenade Crafting"=false + B:"Allow incendiary Minecart Crafting"=false + B:"Allow incendiary Missile Crafting"=false + B:"Allow magnetic Missile Crafting"=true + B:"Allow megasonic Missile Crafting"=true + B:"Allow missileModule Grenade Crafting"=false + B:"Allow missileModule Minecart Crafting"=false + B:"Allow missileModule Missile Crafting"=false + B:"Allow nuclear Crafting"=false + B:"Allow nuclear Missile Crafting"=false + B:"Allow nuclearCluster Missile Crafting"=false + B:"Allow redMatter Crafting"=false + B:"Allow redMatter Missile Crafting"=false + B:"Allow rejuvenation Crafting"=false + B:"Allow rejuvenation Minecart Crafting"=false + B:"Allow rejuvenation Missile Crafting"=false + B:"Allow repulsive Crafting"=false + B:"Allow repulsive Grenade Crafting"=false + B:"Allow repulsive Minecart Crafting"=false + B:"Allow repulsive Missile Crafting"=false + B:"Allow sMine Crafting"=false + B:"Allow sMine Minecart Crafting"=false + B:"Allow sMine Missile Crafting"=false + B:"Allow shrapnel Crafting"=false + B:"Allow shrapnel Grenade Crafting"=false + B:"Allow shrapnel Minecart Crafting"=false + B:"Allow shrapnel Missile Crafting"=false + B:"Allow sonic Crafting"=false + B:"Allow sonic Minecart Crafting"=false + B:"Allow sonic Missile Crafting"=false + B:"Allow thermobaric Crafting"=false + B:"Allow thermobaric Minecart Crafting"=false + B:"Allow thermobaric Missile Crafting"=false +} + + +#################### +# disable_explosives +#################### + +disable_explosives { + B:"Disable antiBallistic"=false + B:"Disable antiGravitational"=true + B:"Disable antimatter"=false + B:"Disable anvil"=true + B:"Disable attractive"=false + B:"Disable breaching"=false + B:"Disable chemical"=true + B:"Disable cluster"=false + B:"Disable condensed"=false + B:"Disable contagious"=true + B:"Disable debilitation"=false + B:"Disable drill"=false + B:"Disable earthquake"=false + B:"Disable emp"=false + B:"Disable endBringer"=false + B:"Disable ender"=false + B:"Disable endothermic"=true + B:"Disable exothermic"=true + B:"Disable fragmentation"=false + B:"Disable homing"=false + B:"Disable hypersonic"=false + B:"Disable incendiary"=false + B:"Disable magnetic"=false + B:"Disable megasonic"=false + B:"Disable missileModule"=false + B:"Disable nuclear"=false + B:"Disable nuclearCluster"=false + B:"Disable redMatter"=true + B:"Disable rejuvenation"=false + B:"Disable repulsive"=false + B:"Disable sMine"=false + B:"Disable shrapnel"=false + B:"Disable sonic"=false + B:"Disable thermobaric"=false +} + + +#################### +# enabled_list +#################### + +enabled_list { + B:Enabled_antidote=true + B:Enabled_bombCart=true + B:Enabled_defuser=true + B:Enabled_grenade=true + B:Enabled_laserDesignator=true + B:Enabled_missile=true + B:Enabled_poisonPowder=true + B:Enabled_radarGun=true + B:Enabled_remoteDetonator=true + B:Enabled_rocketLauncher=true + B:Enabled_signalDisrupter=true + B:Enabled_sulfurDust=true + B:Enabled_tracker=true +} + + +#################### +# extras +#################### + +extras { + B:"Creepers Blow up in Fire"=true + B:"Creepers Drop Sulfur"=false +} + + +#################### +# general +#################### + +general { + B:"Allow Chunk Loading"=true + B:"Antimatter Destroy Bedrock"=false + I:"Antimatter Explosion Size"=80 + B:"Exothermic Create Netherrack"=true + I:"Max Missile Distance"=2500 + I:"Max Tier the Rocket Launcher can Fire"=2 + B:"Pollutive Nuclear"=true + I:"Reduce Obsidian Resistance"=45 + B:"Use Fuel"=true +} + + +#################### +# item +#################### + +item { + I:ItemAmmo=19225 + I:ItemSentryUpgrade=19226 + I:antidote=19222 + I:bombCart=19234 + I:defuser=19228 + I:grenade=19233 + I:laserDesignator=19231 + I:missile=19227 + I:poisonPowder=19220 + I:radarGun=19229 + I:remoteDetonator=19230 + I:rocketLauncher=19232 + I:signalDisrupter=19223 + I:sulfurDust=19221 + I:tracker=19224 +} + + +#################### +# ore_generation +#################### + +ore_generation { + B:"Generate Sulfur Ore"=false +} + + +#################### +# potion +#################### + +potion { + I:virus=98645 +} + + +#################### +# sentry_ai_targeting +#################### + +sentry_ai_targeting { + B:Bosses=false + B:Mobs=true + B:NPCs=true + B:PassiveAnimals=true + B:Players=true +} + + diff --git a/config/MapWriter.cfg b/config/MapWriter.cfg new file mode 100755 index 0000000..3c3d327 --- /dev/null +++ b/config/MapWriter.cfg @@ -0,0 +1,73 @@ +# Configuration file + +#################### +# fullScreenMap +#################### + +fullScreenMap { + I:alphaPercent=100 + I:borderMode=0 + B:circular=0 + I:coordsEnabled=0 + I:enabled=1 + I:heightPercent=0 + I:marginBottom=0 + I:marginLeft=0 + I:marginRight=0 + I:marginTop=0 + I:markerSize=5 + I:playerArrowSize=5 + I:rotate=0 +} + + +#################### +# options +#################### + +options { + I:backgroundTextureMode=0 + I:chunksPerTick=1 + I:coordsMode=1 + I:linearTextureScaling=1 + I:mapPixelSnapEnabled=1 + I:maxChunkSaveDistSq=4096 + I:maxDeathMarkers=3 + I:overlayModeIndex=0 + I:overlayZoomLevel=-1 + I:playerTrailEnabled=0 + I:playerTrailMarkerIntervalMillis=5000 + I:playerTrailMaxLength=30 + I:portNumberInWorldNameEnabled=1 + I:regionFileOutputEnabledMP=1 + I:regionFileOutputEnabledSP=1 + S:saveDirOverride= + S:teleportCommand=tp + I:teleportEnabled=1 + I:textureSize=2048 + B:undergroundMode=0 + I:useSavedBlockColours=0 +} + + +#################### +# smallMap +#################### + +smallMap { + I:alphaPercent=100 + I:borderMode=1 + I:circular=0 + I:coordsEnabled=1 + I:enabled=1 + I:heightPercent=20 + I:marginBottom=-1 + I:marginLeft=-1 + I:marginRight=10 + I:marginTop=10 + I:markerSize=3 + I:playerArrowSize=4 + I:rotate=0 +} + + diff --git a/config/MapWriterBlockColourOverrides.txt b/config/MapWriterBlockColourOverrides.txt new file mode 100755 index 0000000..ca75830 --- /dev/null +++ b/config/MapWriterBlockColourOverrides.txt @@ -0,0 +1,27 @@ +block 37 * 60ffff00 # make dandelions more yellow +block 38 * 60ff0000 # make roses more red +blocktype 2 * grass # grass block +blocktype 8 * water # still water block +blocktype 9 * water # flowing water block +blocktype 18 * leaves # leaves block +blocktype 18 1 opaque # pine leaves (not biome colorized) +blocktype 18 2 opaque # birch leaves (not biome colorized) +blocktype 31 * grass # tall grass block +blocktype 106 * foliage # vines block +blocktype 169 * grass # biomes o plenty holy grass +blocktype 1920 * grass # biomes o plenty plant +blocktype 1923 * opaque # biomes o plenty leaves 1 +blocktype 1924 * opaque # biomes o plenty leaves 2 +blocktype 1925 * foliage # biomes o plenty foliage +blocktype 1926 * opaque # biomes o plenty fruit leaf block +blocktype 1932 * foliage # biomes o plenty tree moss +blocktype 1962 * leaves # biomes o plenty colorized leaves +blocktype 2164 * leaves # twilight forest leaves +blocktype 2177 * leaves # twilight forest magic leaves +blocktype 2204 * leaves # extrabiomesXL green leaves +blocktype 2200 * opaque # extrabiomesXL autumn leaves +blocktype 3257 * opaque # natura berry bush +blocktype 3272 * opaque # natura darkwood leaves +blocktype 3259 * leaves # natura flora leaves +blocktype 3278 * opaque # natura rare leaves +blocktype 3258 * opaque # natura sakura leaves diff --git a/config/MapWriterBlockColours.txt b/config/MapWriterBlockColours.txt new file mode 100755 index 0000000..ebcf3ae --- /dev/null +++ b/config/MapWriterBlockColours.txt @@ -0,0 +1,5776 @@ +biome * ffffff ffffff ffffff +biome 0 ffffff 8eb971 71a74d +biome 1 ffffff 91bd59 77ab2f +biome 2 ffffff bfb755 aea42a +biome 3 ffffff 8ab689 6da36b +biome 4 ffffff 79c05a 59ae30 +biome 5 ffffff 82b593 63a277 +biome 6 e0ffae 5c694e 496137 +biome 7 ffffff 8eb971 71a74d +biome 8 ffffff bfb755 aea42a +biome 9 ffffff 8eb971 71a74d +biome 10 ffffff 80b497 60a17b +biome 11 ffffff 80b497 60a17b +biome 12 ffffff 80b497 60a17b +biome 13 ffffff 80b497 60a17b +biome 14 ffffff 55c93f 2bbb0f +biome 15 ffffff 55c93f 2bbb0f +biome 16 ffffff 91bd59 77ab2f +biome 17 ffffff bfb755 aea42a +biome 18 ffffff 79c05a 59ae30 +biome 19 ffffff 82b593 63a277 +biome 20 ffffff 8ab689 6da36b +biome 21 ffffff 53ca37 29bc05 +biome 22 ffffff 53ca37 29bc05 +biome 50 ffffff 8eb971 71a74d +biome 51 ffffff 8eb971 71a74d +biome 177 ffffff 82b593 63a277 +biome 178 ffffff 8eb971 71a74d +biome 179 ffffff 8eb971 71a74d +blocktype * * normal +blocktype 2 * grass +blocktype 8 * water +blocktype 9 * water +blocktype 18 * leaves +blocktype 18 1 opaque +blocktype 18 2 opaque +blocktype 31 * grass +blocktype 106 * foliage +blocktype 169 * grass +blocktype 1920 * grass +blocktype 1923 * opaque +blocktype 1924 * opaque +blocktype 1925 * foliage +blocktype 1926 * opaque +blocktype 1932 * foliage +blocktype 1962 * leaves +blocktype 2164 * leaves +blocktype 2177 * leaves +blocktype 2200 * opaque +blocktype 2204 * leaves +blocktype 3257 * opaque +blocktype 3258 * opaque +blocktype 3259 * leaves +blocktype 3272 * opaque +blocktype 3278 * opaque +block * * 00000000 +block 1 * ff7d7d7d +block 2 * ff919391 +block 3 * ff866043 +block 4 * ff7e7e7e +block 5 * ffa2824f +block 5 1 ff6c5130 +block 5 2 ffc1ae78 +block 5 3 ff9f7351 +block 6 * 522c3c24 +block 6 0 6e4d6a28 +block 6 2 617fa04f +block 6 3 552f5110 +block 6 4 6e4d6a28 +block 6 6 617fa04f +block 6 7 552f5110 +block 6 8 6e4d6a28 +block 6 10 617fa04f +block 6 11 552f5110 +block 6 12 6e4d6a28 +block 6 14 617fa04f +block 6 15 552f5110 +block 7 * ff535353 +block 8 * b22e43f4 +block 9 * b22e43f4 +block 10 * ffd1530e +block 11 * ffd1530e +block 12 * ffdfd9a4 +block 13 * ff837f7e +block 14 * ff8f8b7a +block 15 * ff86817d +block 16 * ff727272 +block 17 * ff634d2f +block 17 0 ff987a4a +block 17 1 ff6c512e +block 17 2 ffbca97b +block 17 3 ff9a7849 +block 17 5 ff2e1a0d +block 17 6 ffd1d0c8 +block 17 7 ff554419 +block 17 9 ff2e1a0d +block 17 10 ffd1d0c8 +block 17 11 ff554419 +block 17 13 ff2e1a0d +block 17 14 ffd1d0c8 +block 17 15 ff554419 +block 18 * ff909090 +block 18 1 ff2f4b2f +block 18 2 ff41542b +block 18 3 ff9c9a8f +block 18 5 ff7e7e7e +block 18 6 ff828182 +block 18 7 ff9c9a8f +block 18 9 ff7e7e7e +block 18 10 ff828182 +block 18 11 ff9c9a8f +block 18 13 ff7e7e7e +block 18 14 ff828182 +block 18 15 ff9c9a8f +block 19 * ffc3c04a +block 20 * 46daf0f4 +block 21 * ff646e84 +block 22 * ff1e438c +block 23 * ff6e6d6d +block 23 1 ff626161 +block 23 9 ff626161 +block 24 * ffddd59c +block 25 * ff583a28 +block 26 * ff8e1616 +block 26 8 ffaf7474 +block 26 9 ffaf7474 +block 26 10 ffaf7474 +block 26 11 ffaf7474 +block 26 12 ffaf7474 +block 26 13 ffaf7474 +block 26 14 ffaf7474 +block 26 15 ffaf7474 +block 27 * ab896d4a +block 27 8 ab9a6d4a +block 27 9 ab9a6d4a +block 27 10 ab9a6d4a +block 27 11 ab9a6d4a +block 27 12 ab9a6d4a +block 27 13 ab9a6d4a +block 27 14 ab9a6d4a +block 27 15 ab9a6d4a +block 28 * 9b7b685a +block 28 8 9b896759 +block 28 9 9b896759 +block 28 10 9b896759 +block 28 11 9b896759 +block 28 12 9b896759 +block 28 13 9b896759 +block 28 14 9b896759 +block 28 15 9b896759 +block 29 * ff6e6860 +block 29 0 ff616060 +block 29 1 ff7a955c +block 29 6 ff7a955c +block 29 7 ff7a955c +block 29 8 ff616060 +block 29 9 ff616161 +block 29 14 ff7a955c +block 29 15 ff7a955c +block 30 * 68e4e9ea +block 31 * 4d80541f +block 31 1 8a878687 +block 31 2 64848484 +block 32 * 4d80541f +block 33 * ff6e6860 +block 33 0 ff616060 +block 33 1 ff9a7f57 +block 33 6 ff9a7f57 +block 33 7 ff9a7f57 +block 33 8 ff616060 +block 33 9 ff616161 +block 33 14 ff9a7f57 +block 33 15 ff9a7f57 +block 34 * ff6e6860 +block 34 0 ff9a7f57 +block 34 1 ff9a7f57 +block 34 8 ff9a7f57 +block 34 9 ff7a955c +block 35 0 ffe9ecec +block 35 1 fff07613 +block 35 2 ffbd44b3 +block 35 3 ff3aafd9 +block 35 4 fff8c527 +block 35 5 ff70b919 +block 35 6 ffed8dac +block 35 7 ff3e4447 +block 35 8 ff9aa1a1 +block 35 9 ff158991 +block 35 10 ff792aac +block 35 11 ff35399d +block 35 12 ff724728 +block 35 13 ff546d1b +block 35 14 ffa02722 +block 35 15 ff141519 +block 36 * ff9a7f57 +block 37 * 60ffff00 +block 38 * 60ff0000 +block 39 * 2199745c +block 40 * 1fd84b43 +block 41 * fff2c83e +block 42 * ffdcdcdc +block 43 * ff9f9f9f +block 43 1 ffddd59c +block 43 2 ffa2824f +block 43 3 ff7e7e7e +block 43 4 ff966153 +block 43 5 ff7a797a +block 43 6 ff2c161a +block 43 7 ffebe5de +block 43 9 ffddd59c +block 43 10 ffa2824f +block 43 11 ff7e7e7e +block 43 12 ff966153 +block 43 13 ff7a797a +block 43 14 ff2c161a +block 43 15 ffebe5de +block 44 * ff9f9f9f +block 44 1 ffddd59c +block 44 2 ffa2824f +block 44 3 ff7e7e7e +block 44 4 ff966153 +block 44 5 ff7a797a +block 44 6 ff2c161a +block 44 7 ffebe5de +block 44 9 ffddd59c +block 44 10 ffa2824f +block 44 11 ff7e7e7e +block 44 12 ff966153 +block 44 13 ff7a797a +block 44 14 ff2c161a +block 44 15 ffebe5de +block 45 * ff966153 +block 46 * ff8e3e35 +block 47 * ffa2824f +block 48 * ff6d765e +block 49 * ff1a1725 +block 50 * 138a713f +block 51 * 83d48e33 +block 52 * af242e3e +block 53 * ffa2824f +block 54 * ffa2824f +block 55 * 35efefef +block 56 * ff7e8b8f +block 57 * ff60ebe3 +block 58 * ff77492a +block 59 * 8aa69749 +block 59 0 06087f0f +block 59 1 0f057f07 +block 59 2 2006850c +block 59 3 390a820d +block 59 4 4e258412 +block 59 5 673f8112 +block 59 6 7d8d8525 +block 60 * ff4c290e +block 60 0 ff724b2d +block 61 * ff6e6d6d +block 62 * ff6e6d6d +block 63 * ffa2824f +block 64 * ff907243 +block 65 * 8f7a5f37 +block 66 * 6b84775e +block 66 0 8f7f735d +block 66 1 8f7f735d +block 66 2 8f7f735d +block 66 3 8f7f735d +block 66 4 8f7f735d +block 66 5 8f7f735d +block 67 * ff7e7e7e +block 68 * ffa2824f +block 69 * 136f5d43 +block 70 * ff7d7d7d +block 71 * ffc3c2c2 +block 72 * ffa2824f +block 73 * ff856868 +block 74 * ff856868 +block 75 * 1365452b +block 76 * 19ab4f2c +block 77 * ff7d7d7d +block 78 * fff2fdfd +block 79 * c7aabed9 +block 79 0 be91b7fd +block 79 1 c4b1c8e1 +block 79 2 c7a7bbd6 +block 79 3 c7bdc7dc +block 79 4 c7aabed8 +block 79 5 c7a8bcd7 +block 79 7 c7aabdd8 +block 79 8 c7a6bad6 +block 79 9 c7afc1d9 +block 79 10 c78a9db7 +block 79 13 c7879ab3 +block 79 14 c7b1c2d9 +block 79 15 c795a8c1 +block 80 * fff2fdfd +block 81 * c30e6919 +block 82 * ffa0a6b3 +block 83 * 8c94c065 +block 84 * ff5d402f +block 85 * ffa2824f +block 86 * ffc47b18 +block 87 * ff612626 +block 88 * ff513e32 +block 89 * ffa77746 +block 90 * c05a0cc1 +block 91 * ffc47b18 +block 92 * c3f8ded6 +block 93 * ffa09d9c +block 94 * ffa99d9c +block 96 * db7c6338 +block 97 * ff7d7d7d +block 97 1 ff7e7e7e +block 97 2 ff7a797a +block 98 * ff7a797a +block 98 1 ff737969 +block 98 2 ff767576 +block 98 3 ff777677 +block 99 * ff956f51 +block 99 0 ffc9aa78 +block 99 10 ffc9aa78 +block 99 11 ffc9aa78 +block 99 12 ffc9aa78 +block 99 13 ffc9aa78 +block 99 15 ffcbc4b9 +block 100 * ffc82e2d +block 100 0 ffc9aa78 +block 100 10 ffc9aa78 +block 100 11 ffc9aa78 +block 100 12 ffc9aa78 +block 100 13 ffc9aa78 +block 100 15 ffcbc4b9 +block 101 * 736f7166 +block 102 * 46daf0f4 +block 103 * ff6f901e +block 104 0 22009900 +block 104 1 22139402 +block 104 2 22268f04 +block 104 3 22398a07 +block 104 4 224c8509 +block 104 5 2260810c +block 104 6 22737c0e +block 104 7 22867710 +block 104 8 22007213 +block 104 9 22136d15 +block 104 10 22266918 +block 104 11 2239641a +block 104 12 224c5f1c +block 104 13 22605a1f +block 104 14 22735521 +block 104 15 22865124 +block 105 0 22009a00 +block 105 1 22139502 +block 105 2 22269004 +block 105 3 22398b07 +block 105 4 224d8609 +block 105 5 2260810c +block 105 6 22737d0e +block 105 7 22877810 +block 105 8 22007313 +block 105 9 22136e15 +block 105 10 22266918 +block 105 11 2239641a +block 105 12 224d601c +block 105 13 22605b1f +block 105 14 22735621 +block 105 15 22875124 +block 106 * 91747474 +block 107 * ffa2824f +block 108 * ff966153 +block 109 * ff7a797a +block 110 * ff6f6265 +block 111 * 95104219 +block 112 * ff2c161a +block 113 * ff2c161a +block 114 * ff2c161a +block 115 * ce6f1112 +block 115 0 2b751215 +block 115 1 76731112 +block 115 2 76731112 +block 116 * ff804b55 +block 117 * 7d7b6551 +block 118 * 9b49484a +block 119 * c05a0cc1 +block 120 * ff5b7861 +block 121 * ffdcdf9f +block 122 * ff0c090f +block 123 * ff5f361e +block 124 * ff8e653c +block 125 * ffa2824f +block 125 1 ff6c5130 +block 125 2 ffc1ae78 +block 125 3 ff9f7351 +block 125 9 ff6c5130 +block 125 10 ffc1ae78 +block 125 11 ff9f7351 +block 126 * ffa2824f +block 126 1 ff6c5130 +block 126 2 ffc1ae78 +block 126 3 ff9f7351 +block 126 9 ff6c5130 +block 126 10 ffc1ae78 +block 126 11 ff9f7351 +block 127 * 839c5e2b +block 128 * ffddd59c +block 129 * ff6d8974 +block 130 * ff1a1725 +block 131 * 2d8e8576 +block 132 * 08818181 +block 133 * ff47d761 +block 134 * ff6c5130 +block 135 * ffc1ae78 +block 136 * ff9f7351 +block 137 * ffb2896f +block 138 * ff75dcd7 +block 139 * ff7e7e7e +block 139 1 ff6d765e +block 140 * 317c4435 +block 141 * 645a8d2a +block 141 0 1056802f +block 141 1 1056802f +block 141 2 29548c2e +block 141 3 29548c2e +block 141 4 5156842c +block 141 5 5156842c +block 141 6 5156842c +block 142 * 50669f33 +block 142 0 0e50972d +block 142 1 0e50972d +block 142 2 19589b2f +block 142 3 19589b2f +block 142 4 2c699830 +block 142 5 2c699830 +block 142 6 2c699830 +block 143 * ffa2824f +block 145 * ff444444 +block 146 * ffa2824f +block 147 * fff2c83e +block 148 * ffdcdcdc +block 149 * ffafa19f +block 149 0 ffa6a19f +block 149 1 ffa6a19f +block 149 2 ffa6a19f +block 149 3 ffa6a19f +block 149 4 ffa6a19f +block 149 5 ffa6a19f +block 149 6 ffa6a19f +block 149 7 ffa6a19f +block 150 * ffafa19f +block 151 * ff82745e +block 152 * ffaf1805 +block 153 * ff75413e +block 154 * 9b4b4a4b +block 155 * ffebe5de +block 155 1 ffe7e2d9 +block 155 3 ffe6e1d8 +block 155 4 ffe6e1d8 +block 156 * ffebe5de +block 157 * 9b73574a +block 157 8 9b8f574a +block 157 9 9b8f574a +block 157 10 9b8f574a +block 157 11 9b8f574a +block 157 12 9b8f574a +block 157 13 9b8f574a +block 157 14 9b8f574a +block 157 15 9b8f574a +block 158 * ff6e6d6d +block 158 1 ff616060 +block 158 9 ff616060 +block 159 0 ffd1b2a1 +block 159 1 ffa15325 +block 159 2 ff95586c +block 159 3 ff716c89 +block 159 4 ffba8523 +block 159 5 ff677534 +block 159 6 ffa14e4e +block 159 7 ff392a23 +block 159 8 ff876a61 +block 159 9 ff565b5b +block 159 10 ff764656 +block 159 11 ff4a3b5b +block 159 12 ff4d3323 +block 159 13 ff4c532a +block 159 14 ff8f3d2e +block 159 15 ff251610 +block 160 * ff2e3647 +block 161 * ff2e3647 +block 162 * ff2e3647 +block 163 * ff2e3647 +block 164 * ff7c007c +block 165 * 605b1c27 +block 166 * ff7c007c +block 167 * ff7c007c +block 168 * ff1c113e +block 169 * 3733394a +block 170 * ffa6840f +block 170 0 ffaa8c08 +block 170 1 ffaa8c08 +block 170 2 ffaa8c08 +block 170 3 ffaa8c08 +block 171 0 ffe9ecec +block 171 1 fff07613 +block 171 2 ffbd44b3 +block 171 3 ff3aafd9 +block 171 4 fff8c527 +block 171 5 ff70b919 +block 171 6 ffed8dac +block 171 7 ff3e4447 +block 171 8 ff9aa1a1 +block 171 9 ff158991 +block 171 10 ff792aac +block 171 11 ff35399d +block 171 12 ff724728 +block 171 13 ff546d1b +block 171 14 ffa02722 +block 171 15 ff141519 +block 172 * ff985e43 +block 173 * ff100f0f +block 174 * ff7c007c +block 175 * ff7c007c +block 176 * ff7c007c +block 177 * ff7c007c +block 178 * ff7c007c +block 179 * ff7c007c +block 181 * ff7c007c +block 182 * ff7c007c +block 183 * ff7c007c +block 200 * ff8d3e1e +block 201 * 7c351270 +block 202 * 48337f08 +block 203 * 8c2d7504 +block 203 1 4a3a8a0d +block 204 * 33578b2c +block 204 1 6356822a +block 205 * ff323a26 +block 206 * ff3157ce +block 206 1 ff827b77 +block 206 2 ffcf5b9f +block 206 3 ff7c7572 +block 206 4 ffa51aa2 +block 206 5 ff837b77 +block 206 6 ffa3232e +block 206 7 ff837b77 +block 206 8 ffd8c742 +block 206 9 ff857e7a +block 207 * 4e325bd0 +block 207 1 4e807a76 +block 207 2 5eca5499 +block 207 3 5e847d79 +block 207 4 6fa0209f +block 207 5 6f8c8682 +block 207 6 689e222d +block 207 7 687c7672 +block 207 8 5dcdb73d +block 207 9 5d867d79 +block 208 * 982f53c5 +block 208 1 98766f6b +block 208 2 6fc55498 +block 208 3 6f857d78 +block 208 4 84a1179f +block 208 5 84847c78 +block 208 6 6ca6252e +block 208 7 6c88807c +block 208 8 63d1ba3e +block 208 9 638e8781 +block 209 * ff5f5b44 +block 210 * ff3b1115 +block 211 * ff3e3c3c +block 212 * ff6f6b76 +block 213 * 9f5a0e68 +block 214 * ff7c007c +block 215 * ff1d002f +block 216 * ff1d002f +block 217 * ff1d002f +block 219 * b0180129 +block 220 * ff28115d +block 222 * 831a0f2b +block 223 * 58431356 +block 224 * 1649155d +block 225 * 754f3766 +block 226 * 2c731788 +block 227 * ff716d73 +block 228 * ff716d73 +block 229 * ff716d73 +block 230 * ff716d73 +block 231 * ff5b5162 +block 232 * ff5b5162 +block 233 * ff5b5162 +block 234 * ff5b5162 +block 235 * ff6b1c79 +block 412 * fff8fdfd +block 413 * fff8fdfd +block 422 * ff757575 +block 423 * ff7a7a7a +block 424 * ff7d7d7d +block 425 * ff7d7d7d +block 426 * ff7d7d7d +block 427 * ff7d7d7d +block 428 * fff8fdfd +block 429 * fff8fdfd +block 431 * ff7c007c +block 432 * ffeef5fb +block 433 * ff7a7f77 +block 434 * ff7a7f77 +block 435 * ff7a7f77 +block 436 * ff7a7f77 +block 437 * ffa5a9aa +block 438 * ffa5a9aa +block 439 * ffa5a9aa +block 440 * ffa5a9aa +block 490 * ff7f756b +block 491 * ffc3813d +block 492 * ff888888 +block 493 * ffb7b7b7 +block 494 * ff717a82 +block 495 * ff5296d9 +block 496 * ff6b816b +block 497 * ff52a85a +block 498 * ff552e2d +block 499 * ff2e2e2e +block 500 * ff7d7d7d +block 501 * ffdcdcdc +block 502 * ffa2824f +block 503 * ff7e7e7e +block 504 * ff7e7e7e +block 505 * ff7e7e7e +block 506 * ffe9ecec +block 507 * ffe9ecec +block 508 * ffa2824f +block 509 * ffa2824f +block 510 * ffa2824f +block 511 * ffdcdcdc +block 512 * ffdcdcdc +block 513 * ffc1ae78 +block 514 * ffe9ecec +block 515 * ff546d1b +block 516 * ff724728 +block 517 * ffa02722 +block 518 * ff141519 +block 520 * ffa2824f +block 521 * ffa2824f +block 522 * ffa2824f +block 523 * ffa2824f +block 524 * b12c6d0d +block 524 0 ab28660d +block 524 1 9f2f4b2f +block 524 2 8f41542b +block 524 4 ab28660d +block 524 5 9f2f4b2f +block 524 6 8f41542b +block 524 8 ab28660d +block 524 9 9f2f4b2f +block 524 10 8f41542b +block 524 12 ab28660d +block 524 13 9f2f4b2f +block 524 14 8f41542b +block 525 * ff7d7d7d +block 526 * ff7d7d7d +block 527 * ffe9ecec +block 528 * ff7d7d7d +block 529 * ff634d2f +block 530 * ffa2824f +block 531 * ffdcdcdc +block 532 * ffdcdcdc +block 533 * ff444444 +block 534 * ffebe5de +block 535 * ffebe5de +block 536 * ff634d2f +block 537 * 46daf0f4 +block 538 * 46daf0f4 +block 540 * ff373833 +block 541 * ff102038 +block 542 * ff323235 +block 543 * 6bffe800 +block 544 * d2ffffff +block 545 * ffebe5de +block 546 * ffece6df +block 547 * ffece6df +block 548 * ffece6df +block 549 * ffece6df +block 550 * ffece6df +block 551 * fff2c83e +block 552 * ff985e43 +block 553 * ffece6df +block 554 * ffdcdcdc +block 555 * ff7d7d7d +block 556 * ff7d7d7d +block 560 * ff8f463e +block 561 * fffe8f39 +block 562 * ff6c5e4e +block 563 * ff98e7b0 +block 564 * ff754947 +block 565 * ff767676 +block 566 * ffa6935c +block 567 * fffef66f +block 568 * ff7d3f3e +block 569 * ff862c31 +block 570 * ff703f49 +block 571 * ff452757 +block 573 * ff5b2b2a +block 574 * ff7c007c +block 575 * ff7c007c +block 576 * ff7c007c +block 577 * ff7c007c +block 578 * ff7c007c +block 579 * ff7c007c +block 581 * ff7c007c +block 590 * ff7c007c +block 591 * ff7c007c +block 592 * ff7c007c +block 593 * ff7c007c +block 594 * ff7c007c +block 597 * ff7c007c +block 598 * ff7c007c +block 599 * ff7c007c +block 600 * ff7c007c +block 601 * ff7c007c +block 602 * dd7e5954 +block 603 * 49e49888 +block 604 * d3d04849 +block 605 * 43852b32 +block 606 * 4383482d +block 607 * 43987526 +block 608 * 438d4f94 +block 609 * 434a198f +block 610 * 4312748f +block 611 * 432b5c3b +block 612 * 63ffc82f +block 613 * d33282ad +block 614 * d34c865f +block 615 * 65ca2e37 +block 616 * 6504acdb +block 617 * 652d8149 +block 618 * 65d76ae3 +block 619 * 65c55f31 +block 620 * 652706b2 +block 621 * 65e9ad22 +block 646 * fff07613 +block 647 * ff141519 +block 648 * fff07613 +block 649 * fff07613 +block 651 * ffa08d83 +block 652 * fbf9ed4f +block 653 * fbf9ed4f +block 657 * ffa2824f +block 660 * ffc8c2be +block 661 * ffded1b6 +block 662 * ffc8dadb +block 665 * ff7592a8 +block 666 * ffa88b75 +block 667 * ff472929 +block 668 * ff3e3630 +block 669 * ffa5b0af +block 670 * ff53432e +block 698 * ff4a433c +block 699 * ff403023 +block 735 * 9fcee8ea +block 736 * ff7c007c +block 737 * ff7c007c +block 738 * ff7c007c +block 739 * ff7c007c +block 740 * ffb67993 +block 741 * ffd4b8c7 +block 742 * ff7c9a88 +block 743 * ff54885a +block 744 * ff2f7624 +block 745 * ffd8eded +block 746 * ff4b814f +block 747 * ff821337 +block 748 * ffd8eded +block 749 * ffab415f +block 750 * ff7c007c +block 751 * ff7c007c +block 752 * ff7c007c +block 753 * ff7c007c +block 755 * ff7c007c +block 756 * ff7c007c +block 757 * ff7c007c +block 758 * ff7c007c +block 759 * ff7c007c +block 760 * ff7c007c +block 761 * ff7c007c +block 762 * ff7c007c +block 763 * ff7c007c +block 764 * ff7c007c +block 765 * ff7c007c +block 766 * ff7c007c +block 767 * ff7c007c +block 768 * ff7c007c +block 769 * ff7c007c +block 770 * ff7c007c +block 771 * ff7c007c +block 772 * ff7c007c +block 773 * ff7c007c +block 774 * ff7c007c +block 775 * ffca849f +block 776 * ffca849f +block 777 * ff7c007c +block 778 * ff7c007c +block 779 * ff7c007c +block 782 * ff7c007c +block 783 * ff7c007c +block 784 * ff7c007c +block 785 * ff7c007c +block 786 * ff7c007c +block 787 * ff7c007c +block 788 * ff7c007c +block 789 * ff7c007c +block 790 * ff7c007c +block 791 * ff7c007c +block 792 * ff7c007c +block 793 * ff7c007c +block 794 * ff7c007c +block 795 * 449a9d9d +block 796 * ff7c007c +block 800 * 42c9e1e4 +block 801 * 20cfe8ea +block 802 * 2699b6b6 +block 806 * 728b9186 +block 807 * 6294c9e5 +block 808 * 8caed2db +block 830 * ffdcdcdc +block 831 * ffe9ecec +block 832 * ffe9ecec +block 835 * e2348eb6 +block 836 * ffafa385 +block 1000 * ff2a2328 +block 1001 * ff302a31 +block 1002 * ff353038 +block 1003 * ff372a26 +block 1004 * ff2c252b +block 1005 * ff353038 +block 1006 * ff505052 +block 1007 * ff363637 +block 1008 * ff484849 +block 1009 * ff404041 +block 1010 * ff343434 +block 1011 * ff464647 +block 1012 * ff363636 +block 1013 * ff4d4d50 +block 1014 * ff6b1a1a +block 1014 0 ff821f1f +block 1014 1 ff821f1f +block 1014 2 ff821f1f +block 1014 3 ff821f1f +block 1014 12 ff821f1f +block 1014 13 ff821f1f +block 1014 14 ff821f1f +block 1014 15 ff821f1f +block 1015 * ff5d1a1e +block 1015 0 ff703146 +block 1015 1 ff703146 +block 1015 2 ff703146 +block 1015 3 ff703146 +block 1016 * ff653046 +block 1017 * ff720302 +block 1018 * ff483d3b +block 1018 0 ff2b7265 +block 1018 1 ff2b7265 +block 1018 2 ff2b7265 +block 1018 3 ff2b7265 +block 1018 12 ff2b7265 +block 1018 13 ff2b7265 +block 1018 14 ff2b7265 +block 1018 15 ff2b7265 +block 1019 * ff393b4d +block 1019 0 ff356d6e +block 1019 1 ff356d6e +block 1019 2 ff356d6e +block 1019 3 ff356d6e +block 1020 * ff2b6863 +block 1021 * ff167779 +block 1022 * ff450709 +block 1023 * ff281417 +block 1024 * ff2f171c +block 1025 * ff49484d +block 1025 0 ff505156 +block 1025 1 ff505156 +block 1025 2 ff505156 +block 1025 3 ff505156 +block 1025 12 ff505156 +block 1025 13 ff505156 +block 1025 14 ff505156 +block 1025 15 ff505156 +block 1026 * ff58585b +block 1026 0 ff636264 +block 1026 1 ff636264 +block 1026 2 ff636264 +block 1026 3 ff636264 +block 1026 12 ff636264 +block 1026 13 ff636264 +block 1026 14 ff636264 +block 1026 15 ff636264 +block 1027 * ff48484e +block 1028 * ff200a3c +block 1029 * fff09246 +block 1030 * 3b8d2c1d +block 1031 * 5a7e0829 +block 1032 * 3b7f0829 +block 1033 * 314a6d57 +block 1034 * 5b148a7c +block 1035 * 4614887b +block 1036 * ff2a2328 +block 1037 * ff2a2328 +block 1038 * ff353038 +block 1039 * ff353038 +block 1040 * ff302a31 +block 1041 * ff302a31 +block 1042 * ff4d4d50 +block 1043 * ff4d4d50 +block 1044 * ff464647 +block 1045 * ff464647 +block 1046 * ff363637 +block 1047 * ff363637 +block 1048 * ff484849 +block 1049 * ff484849 +block 1050 * ff653046 +block 1051 * ff653046 +block 1052 * ff2b6863 +block 1053 * ff2b6863 +block 1054 * ff2a2328 +block 1055 * ff353038 +block 1056 * ff302a31 +block 1057 * ff4d4d50 +block 1058 * ff464647 +block 1059 * ff363637 +block 1060 * ff484849 +block 1061 * ff653046 +block 1062 * ff2b6863 +block 1063 * ff73374f +block 1065 * ff2b7670 +block 1067 * ff653046 +block 1068 * ff2b6863 +block 1069 * ff653046 +block 1070 * ff2b6863 +block 1071 * d7673248 +block 1072 * c82f776f +block 1073 * ff2a2328 +block 1074 * ff353038 +block 1075 * ff302a31 +block 1076 * ff4d4d50 +block 1077 * ff464647 +block 1078 * ff363637 +block 1079 * ff484849 +block 1080 * ff2c161a +block 1081 * ff450709 +block 1082 * ffc06b4f +block 1083 * ffbf6a50 +block 1084 * ffa17d67 +block 1085 * ff9a7965 +block 1086 * ff6c996e +block 1087 * ff6d916b +block 1088 * ff52a284 +block 1089 * ff4f997e +block 1090 * ffc06b4f +block 1091 * ffc06b4f +block 1092 * ffbf6a50 +block 1093 * ffbf6a50 +block 1094 * ffa17d67 +block 1095 * ffa17d67 +block 1096 * ff9a7965 +block 1097 * ff9a7965 +block 1098 * ff6c996e +block 1099 * ff6c996e +block 1100 * ff6d916b +block 1101 * ff6d916b +block 1102 * ff52a284 +block 1103 * ff52a284 +block 1104 * ff4f997e +block 1105 * ff4f997e +block 1106 * ffc06b4f +block 1107 * ffbf6a50 +block 1108 * ffa17d67 +block 1109 * ff9a7965 +block 1110 * ff6c996e +block 1111 * ff6d916b +block 1112 * ff52a284 +block 1113 * ff4f997e +block 1114 * ff431e20 +block 1115 * ff2f408b +block 1116 * ff776a55 +block 1117 * ff34767d +block 1118 * ff535a5d +block 1119 * ff758e43 +block 1120 * ff5ea4d0 +block 1121 * ff90a6a7 +block 1122 * ffa2c537 +block 1123 * ffd064bf +block 1124 * ff9a935b +block 1125 * ffeb9ab5 +block 1126 * ff6d3098 +block 1127 * ffb53b35 +block 1128 * ffbcd4ca +block 1129 * ffeac058 +block 1130 * ff191a1f +block 1131 * ff4649a6 +block 1132 * ff7d5435 +block 1133 * ff24939d +block 1134 * ff4c5154 +block 1135 * ff61772c +block 1136 * ff4ab4d5 +block 1137 * ff9a9a94 +block 1138 * ff7dbd29 +block 1139 * ffc053b8 +block 1140 * ffe3831f +block 1141 * ffe499b5 +block 1142 * ff8337b1 +block 1143 * ffa83632 +block 1144 * ffe1e3e3 +block 1145 * ffe8c736 +block 1146 * ff866b5c +block 1147 * ff9a694f +block 1148 * ffdda92e +block 1149 * ffa6876b +block 1150 * ff6b5132 +block 1150 0 ff5c4322 +block 1150 1 ff5c4322 +block 1150 2 ff5c4322 +block 1150 3 ff5c4322 +block 1151 * ff6b5132 +block 1151 0 ff86643a +block 1151 1 ff86643a +block 1151 2 ff86643a +block 1151 3 ff86643a +block 1152 * ff947941 +block 1153 * ff080a0f +block 1154 * ff080a0f +block 1155 * ff080a0f +block 1156 * ff080a0f +block 1157 * ff080a0f +block 1158 * ff2c2e8f +block 1159 * ff2c2e8f +block 1160 * ff2c2e8f +block 1161 * ff2c2e8f +block 1162 * ff2c2e8f +block 1163 * ff603b1f +block 1164 * ff603b1f +block 1165 * ff603b1f +block 1166 * ff603b1f +block 1167 * ff603b1f +block 1168 * ff157788 +block 1169 * ff157788 +block 1170 * ff157788 +block 1171 * ff157788 +block 1172 * ff157788 +block 1173 * ff36393d +block 1174 * ff36393d +block 1175 * ff36393d +block 1176 * ff36393d +block 1177 * ff36393d +block 1178 * ff495b24 +block 1179 * ff495b24 +block 1180 * ff495b24 +block 1181 * ff495b24 +block 1182 * ff495b24 +block 1183 * ff2389c6 +block 1184 * ff2389c6 +block 1185 * ff2389c6 +block 1186 * ff2389c6 +block 1187 * ff2389c6 +block 1188 * ff7d7d73 +block 1189 * ff7d7d73 +block 1190 * ff7d7d73 +block 1191 * ff7d7d73 +block 1192 * ff7d7d73 +block 1193 * ff5ea818 +block 1194 * ff5ea818 +block 1195 * ff5ea818 +block 1196 * ff5ea818 +block 1197 * ff5ea818 +block 1198 * ffa9309f +block 1199 * ffa9309f +block 1200 * ffa9309f +block 1201 * ffa9309f +block 1202 * ffa9309f +block 1203 * ffe06100 +block 1204 * ffe06100 +block 1205 * ffe06100 +block 1206 * ffe06100 +block 1207 * ffe06100 +block 1208 * ffd5658e +block 1209 * ffd5658e +block 1210 * ffd5658e +block 1211 * ffd5658e +block 1212 * ffd5658e +block 1213 * ff641f9c +block 1214 * ff641f9c +block 1215 * ff641f9c +block 1216 * ff641f9c +block 1217 * ff641f9c +block 1218 * ffcfd5d6 +block 1219 * ffcfd5d6 +block 1220 * ffcfd5d6 +block 1221 * ffcfd5d6 +block 1222 * ffcfd5d6 +block 1223 * fff0af15 +block 1224 * fff0af15 +block 1225 * fff0af15 +block 1226 * fff0af15 +block 1227 * fff0af15 +block 1228 * ff8e2020 +block 1229 * ff8e2020 +block 1230 * ff8e2020 +block 1231 * ff8e2020 +block 1232 * ff8e2020 +block 1233 * ffdfe0dc +block 1234 * ffdae0a2 +block 1235 * ffae5c3b +block 1235 0 ffa65b33 +block 1235 1 ffa65b33 +block 1235 2 ffa65b33 +block 1235 3 ffa65b33 +block 1236 * ffc4b076 +block 1236 0 ffbfab74 +block 1236 1 ffbfab74 +block 1236 2 ffbfab74 +block 1236 3 ffbfab74 +block 1237 * ff89395a +block 1237 0 ff793852 +block 1237 1 ff793852 +block 1237 2 ff793852 +block 1237 3 ff793852 +block 1238 * ff483824 +block 1238 0 ff412c16 +block 1238 1 ff412c16 +block 1238 2 ff412c16 +block 1238 3 ff412c16 +block 1239 * ffab8454 +block 1239 0 ffa57a51 +block 1239 1 ffa57a51 +block 1239 2 ffa57a51 +block 1239 3 ffa57a51 +block 1240 * ffb19056 +block 1240 0 ffa0814d +block 1240 1 ffa0814d +block 1240 2 ffa0814d +block 1240 3 ffa0814d +block 1241 * ff735934 +block 1241 0 ff69502e +block 1241 1 ff69502e +block 1241 2 ff69502e +block 1241 3 ff69502e +block 1242 * ff399693 +block 1242 0 ff34807c +block 1242 1 ff34807c +block 1242 2 ff34807c +block 1242 3 ff34807c +block 1243 * ffe5e1cf +block 1243 0 ffd1ceb3 +block 1243 1 ffd1ceb3 +block 1243 2 ffd1ceb3 +block 1243 3 ffd1ceb3 +block 1244 * ff6aaa96 +block 1245 * ff6aaa96 +block 1246 * ff6aaa96 +block 1247 * ff6aaa96 +block 1248 * ff335b4b +block 1249 * ff335b4b +block 1250 * ff335b4b +block 1251 * ff335b4b +block 1252 * ff63ab9e +block 1253 * ff63ab9e +block 1254 * ff63ab9e +block 1255 * ff63ab9e +block 1256 * 27c46f53 +block 1257 * 41cdc4b9 +block 1259 * 696a5b53 +block 1260 * e7ae8650 +block 1261 * 3733394a +block 1262 * c39c5733 +block 1263 * ffcfc29d +block 1264 * ff4b3117 +block 1265 * d5986e4d +block 1266 * ff674f2f +block 1267 * ff797979 +block 1268 * ff737373 +block 1269 * ff6c6c6c +block 1270 * ff727272 +block 1271 * ff7b7b7b +block 1272 * ff717171 +block 1273 * ff767676 +block 1274 * ff7b7b7b +block 1275 * ff6e6e6e +block 1276 * ff707070 +block 1277 * ff707070 +block 1278 * ff6e6e6e +block 1279 * ff6b6b6b +block 1280 * ff6d6d6d +block 1281 * ff717171 +block 1282 * ff6f6f6f +block 1283 * ff6b6b6b +block 1284 * ff727272 +block 1285 * ff737373 +block 1286 * ff717171 +block 1287 * ff777777 +block 1288 * ff6e6e6e +block 1289 * ff696969 +block 1290 * ff6d6d6d +block 1291 * ff767676 +block 1292 * 932a690d +block 1293 * 5914877a +block 1294 * ff5f3f37 +block 1294 0 ff5e423a +block 1294 1 ff5e423a +block 1294 2 ff5e423a +block 1294 3 ff5e423a +block 1295 * d6671b17 +block 1295 0 d6968412 +block 1295 1 d6402804 +block 1295 2 d66b4000 +block 1295 3 d6400704 +block 1295 4 d66b2801 +block 1295 6 c47fbef6 +block 1295 7 c4da8db6 +block 1295 8 d6968412 +block 1295 9 d6402804 +block 1295 10 d66b4000 +block 1295 11 d6400704 +block 1295 12 d66b2801 +block 1295 14 c47fbef6 +block 1295 15 c4da8db6 +block 1324 * ff7c007c +block 1325 * ff7c007c +block 1326 * ff7c007c +block 1328 * ff616863 +block 1329 * ff616863 +block 1330 * ff616863 +block 1331 * ff616863 +block 1333 * ff62665f +block 1334 * ff62665f +block 1335 * ff62665f +block 1336 * ff62665f +block 1338 * ff7c007c +block 1339 * ff7c007c +block 1340 * ffb86449 +block 1341 * ff9a7764 +block 1342 * ff53a184 +block 1343 * ff68956a +block 1344 * b2bf6b4f +block 1345 * b2a17d68 +block 1346 * b252a183 +block 1347 * b26a986e +block 1348 * ffd7966a +block 1349 * ffc29164 +block 1350 * ff869a68 +block 1351 * ff9c9d62 +block 1354 * ffcd5818 +block 1355 * ffcd5818 +block 1356 * ff7c007c +block 1500 * ff757575 +block 1501 * ff757575 +block 1502 * ff757575 +block 1503 * ff757575 +block 1504 * ff5d9013 +block 1505 * ff412c17 +block 1506 * 3733394a +block 1507 * b79b5836 +block 1509 * e7926b4d +block 1511 * ff614b31 +block 1513 * ffc6bd8d +block 1514 * 3733394a +block 1515 * ff7c007c +block 1516 * ff7c007c +block 1517 * ff7c007c +block 1518 * ff7c007c +block 1519 * ff7c007c +block 1525 * ffae9aa4 +block 1526 * 888a7e75 +block 1527 * 80ca0505 +block 1527 1 6ed20e0e +block 1527 2 82cb0707 +block 1527 4 6ed20e0e +block 1527 5 82cb0707 +block 1527 7 6ed20e0e +block 1527 8 82cb0707 +block 1527 10 6ed20e0e +block 1527 11 82cb0707 +block 1527 13 6ed20e0e +block 1527 14 82cb0707 +block 1529 * ff005601 +block 1530 * ffa2824f +block 1530 1 ff7d7d7d +block 1530 2 ffdcdcdc +block 1530 3 fff2c83e +block 1530 4 ff60ebe3 +block 1530 8 ff7d7d7d +block 1530 9 ffdcdcdc +block 1530 10 fff2c83e +block 1530 11 ff60ebe3 +block 1530 15 ff7d7d7d +block 1531 * ffa2824f +block 1531 1 ff7d7d7d +block 1531 2 ffdcdcdc +block 1531 3 fff2c83e +block 1531 4 ff60ebe3 +block 1531 8 ff7d7d7d +block 1531 9 ffdcdcdc +block 1531 10 fff2c83e +block 1531 11 ff60ebe3 +block 1531 15 ff7d7d7d +block 1532 * ffa2824f +block 1532 1 ff7d7d7d +block 1532 2 ffdcdcdc +block 1532 3 fff2c83e +block 1532 4 ff60ebe3 +block 1532 8 ff7d7d7d +block 1532 9 ffdcdcdc +block 1532 10 fff2c83e +block 1532 11 ff60ebe3 +block 1532 15 ff7d7d7d +block 1533 * ffa2824f +block 1533 1 ff6c5130 +block 1533 2 ffc1ae78 +block 1533 3 ff9f7351 +block 1534 * ffa2824f +block 1534 1 ff6c5130 +block 1534 2 ffc1ae78 +block 1534 3 ff9f7351 +block 1535 * ffa2824f +block 1535 1 ff6c5130 +block 1535 2 ffc1ae78 +block 1535 3 ff9f7351 +block 1536 * ffa2824f +block 1536 1 ff6c5130 +block 1536 2 ffc1ae78 +block 1536 3 ff9f7351 +block 1537 * ffa2824f +block 1537 1 ff6c5130 +block 1537 2 ffc1ae78 +block 1537 3 ff9f7351 +block 1538 * ffa2824f +block 1538 1 ff6c5130 +block 1538 2 ffc1ae78 +block 1538 3 ff9f7351 +block 1541 * ffa2824f +block 1541 1 ff6c5130 +block 1541 2 ffc1ae78 +block 1541 3 ff9f7351 +block 1542 0 ff000000 +block 1542 1 ffffffff +block 1542 2 ff808080 +block 1542 3 ffff0000 +block 1542 4 ffff6a00 +block 1542 5 ffffd800 +block 1542 6 ffb6ff00 +block 1542 7 ff4cff00 +block 1542 8 ff007f0e +block 1542 9 ff00ffff +block 1542 10 ff0094ff +block 1542 11 ff0026ff +block 1542 12 ff4800ff +block 1542 13 ffb200ff +block 1542 14 ffff00dc +block 1542 15 ffff006e +block 1543 * ffa2824f +block 1543 1 ff6c5130 +block 1543 2 ffc1ae78 +block 1543 3 ff9f7351 +block 1544 * ffa2824f +block 1544 1 ff6c5130 +block 1544 2 ffc1ae78 +block 1544 3 ff9f7351 +block 1545 * ff7e7e7e +block 1546 * ff7d7d7d +block 1547 * ffa2824f +block 1547 1 ff6c5130 +block 1547 2 ffc1ae78 +block 1547 3 ff9f7351 +block 1548 * ffa2824f +block 1548 1 ff6c5130 +block 1548 2 ffc1ae78 +block 1548 3 ff9f7351 +block 1549 * ffa2824f +block 1549 1 ff6c5130 +block 1549 2 ffc1ae78 +block 1549 3 ff9f7351 +block 1550 * ffa2824f +block 1550 1 ff6c5130 +block 1550 2 ffc1ae78 +block 1550 3 ff9f7351 +block 1551 * ffa2824f +block 1551 1 ff7d7d7d +block 1551 2 ffdcdcdc +block 1551 3 fff2c83e +block 1551 4 ff60ebe3 +block 1551 8 ff7d7d7d +block 1551 9 ffdcdcdc +block 1551 10 fff2c83e +block 1551 11 ff60ebe3 +block 1551 15 ff7d7d7d +block 1552 0 bfdcf0fa +block 1552 1 bfbb7832 +block 1552 2 bf9a48d4 +block 1552 3 bf5890d4 +block 1552 4 bfc6d832 +block 1552 5 bf6ec019 +block 1552 6 bfd078a2 +block 1552 7 bf42484b +block 1552 8 bf849096 +block 1552 9 bf427896 +block 1552 10 bf6e3caf +block 1552 11 bf2c48af +block 1552 12 bf584832 +block 1552 13 bf587832 +block 1552 14 bf843032 +block 1552 15 bf161819 +block 1553 * ff7e7e7e +block 1556 * ff000000 +block 1557 * ffffffff +block 1558 * ff808080 +block 1559 * ffff0000 +block 1560 * ffff6a00 +block 1561 * ffffd800 +block 1562 * ffb6ff00 +block 1563 * ff4cff00 +block 1564 * ff007f0e +block 1565 * ff00ffff +block 1566 * ff0094ff +block 1567 * ff0026ff +block 1568 * ff4800ff +block 1569 * ffb200ff +block 1570 * ffff00dc +block 1571 * ffff006e +block 1572 * ff000000 +block 1573 * ffffffff +block 1574 * ff808080 +block 1575 * ffff0000 +block 1576 * ffff6a00 +block 1577 * ffffd800 +block 1578 * ffb6ff00 +block 1579 * ff4cff00 +block 1580 * ff007f0e +block 1581 * ff00ffff +block 1582 * ff0094ff +block 1583 * ff0026ff +block 1584 * ff4800ff +block 1585 * ffb200ff +block 1586 * ffff00dc +block 1587 * ffff006e +block 1588 * ff000000 +block 1589 * ffffffff +block 1590 * ff808080 +block 1591 * ffff0000 +block 1592 * ffff6a00 +block 1593 * ffffd800 +block 1594 * ffb6ff00 +block 1595 * ff4cff00 +block 1596 * ff007f0e +block 1597 * ff00ffff +block 1598 * ff0094ff +block 1599 * ff0026ff +block 1600 * ff4800ff +block 1601 * ffb200ff +block 1602 * ffff00dc +block 1603 * ffff006e +block 1604 * 3733394a +block 1605 * 3733394a +block 1606 * 3733394a +block 1607 * 3733394a +block 1608 * 3733394a +block 1609 * 3733394a +block 1610 * 3733394a +block 1611 * 3733394a +block 1612 * 3733394a +block 1613 * 3733394a +block 1614 * 3733394a +block 1615 * 3733394a +block 1616 * 3733394a +block 1617 * 3733394a +block 1618 * 3733394a +block 1619 * 3733394a +block 1620 * 3733394a +block 1621 * 3733394a +block 1622 * 3733394a +block 1623 * 3733394a +block 1624 * 3733394a +block 1625 * 3733394a +block 1626 * 3733394a +block 1627 * 3733394a +block 1628 * 3733394a +block 1629 * 3733394a +block 1630 * 3733394a +block 1631 * 3733394a +block 1632 * 3733394a +block 1633 * 3733394a +block 1634 * 3733394a +block 1635 * 3733394a +block 1636 * 3733394a +block 1637 * 3733394a +block 1638 * 3733394a +block 1639 * 3733394a +block 1640 * 3733394a +block 1641 * 3733394a +block 1642 * 3733394a +block 1643 0 ff63645d +block 1643 1 ff676761 +block 1643 2 ff676760 +block 1643 3 ff66665f +block 1643 4 ff66665f +block 1643 5 ff62635c +block 1643 6 ff63635b +block 1643 7 ff62625b +block 1643 8 ff62625c +block 1643 9 ff63645e +block 1643 10 ff63645d +block 1643 11 ff63645d +block 1644 0 ff6b604b +block 1644 1 ff6a6354 +block 1644 2 ff696355 +block 1644 3 ff6a6355 +block 1644 4 ff6d6657 +block 1644 5 ff6a614f +block 1645 0 ff5a6446 +block 1645 1 ff5b6547 +block 1645 2 ff5a6346 +block 1646 0 ff86554a +block 1646 1 ff845044 +block 1646 2 ffa47c72 +block 1646 3 ffa27a70 +block 1646 4 ff93665b +block 1646 5 ff92665b +block 1646 6 ff926459 +block 1646 7 ffd7c8c0 +block 1646 8 ffdaccc6 +block 1646 9 ffaa887e +block 1646 10 ffcab6af +block 1646 11 ffcbb8b0 +block 1646 12 ffbfa59b +block 1646 13 ffc3aaa2 +block 1646 14 fff0eee8 +block 1646 15 ffa37c72 +block 1647 * 3733394a +block 1648 * 3733394a +block 1649 * 3733394a +block 1650 * 3733394a +block 1651 * 3733394a +block 1652 * 3733394a +block 1653 * 3733394a +block 1654 * 3733394a +block 1655 * 3733394a +block 1656 * 3733394a +block 1657 * 3733394a +block 1658 * 3733394a +block 1659 * 3733394a +block 1660 * 3733394a +block 1661 * 3733394a +block 1662 * 3733394a +block 1663 * 3733394a +block 1664 * 3733394a +block 1665 * 3733394a +block 1666 * 3733394a +block 1667 * 3733394a +block 1668 * 3733394a +block 1669 * 3733394a +block 1670 * 3733394a +block 1671 * 3733394a +block 1672 * 3733394a +block 1673 * 3733394a +block 1674 * 3733394a +block 1675 * 3733394a +block 1676 * 3733394a +block 1677 * 3733394a +block 1678 * 3733394a +block 1679 * 3733394a +block 1680 * ff865642 +block 1681 * ff8b5a45 +block 1682 0 ffa6908c +block 1682 1 ff7d4528 +block 1682 2 ff764960 +block 1682 3 ff5e5876 +block 1682 4 ff8f6729 +block 1682 5 ff525930 +block 1682 6 ff7e4248 +block 1682 7 ff372b25 +block 1682 8 ff6e5757 +block 1682 9 ff46494f +block 1682 10 ff633f52 +block 1682 11 ff3d344e +block 1682 12 ff3f2c24 +block 1682 13 ff42472b +block 1682 14 ff753832 +block 1683 0 ffae9892 +block 1683 1 ff83482a +block 1683 2 ff7c4d64 +block 1683 3 ff625d7b +block 1683 4 ff966c2b +block 1683 5 ff565e32 +block 1683 6 ff85454b +block 1683 7 ff392d27 +block 1683 8 ff735c5b +block 1683 9 ff4a4d52 +block 1683 10 ff684355 +block 1683 11 ff403751 +block 1683 12 ff422e25 +block 1683 13 ff454b2d +block 1683 14 ff7b3b35 +block 1684 * 3733394a +block 1685 * 3733394a +block 1686 * 3733394a +block 1687 * 3733394a +block 1688 * 3733394a +block 1689 * 3733394a +block 1690 * 3733394a +block 1691 * 3733394a +block 1692 * 3733394a +block 1693 * 3733394a +block 1694 * 3733394a +block 1902 * 3733394a +block 2000 0 ff442c1d +block 2000 1 ff415145 +block 2000 2 ff62462f +block 2000 3 ff252523 +block 2000 4 ff947843 +block 2003 * ff442c1d +block 2004 * ff3c3227 +block 2004 0 ff3e3326 +block 2004 1 ff3b3224 +block 2004 2 ff453927 +block 2004 3 ff453927 +block 2004 5 ff322b22 +block 2004 6 ff4c4137 +block 2004 7 ff27241c +block 2004 9 ff322b22 +block 2004 10 ff4c4137 +block 2004 11 ff27241c +block 2004 13 ff322b22 +block 2004 14 ff4c4137 +block 2004 15 ff27241c +block 2005 0 8b37401e +block 2005 1 6f22371d +block 2005 2 7036461d +block 2005 3 7c634e20 +block 2005 4 77564d15 +block 2005 5 653e4f40 +block 2005 6 71373c22 +block 2005 7 7446441b +block 2005 8 642a3d3c +block 2005 9 70596044 +block 2005 10 7c454e1c +block 2005 11 7a3c4b22 +block 2005 12 7a676038 +block 2005 13 863a4217 +block 2005 14 4a4f5321 +block 2005 15 4a20454a +block 2006 * 4a5a6921 +block 2006 0 32636a0d +block 2006 1 4763522e +block 2006 2 826b6340 +block 2006 3 8239545a +block 2006 4 764d463c +block 2006 5 1f4b4e21 +block 2006 6 985c6412 +block 2006 7 72786a0e +block 2006 8 4a61765a +block 2006 9 6f38461c +block 2006 12 40897430 +block 2006 13 4a6d4237 +block 2007 * 3733394a +block 2008 * ff252623 +block 2008 1 ff442c1d +block 2008 2 ff6b442f +block 2008 3 ff415145 +block 2008 4 ff62462f +block 2008 5 ff686c65 +block 2008 6 ff947843 +block 2008 7 ff252523 +block 2008 9 ff442c1d +block 2008 10 ff6b442f +block 2008 11 ff415145 +block 2008 12 ff62462f +block 2008 13 ff686c65 +block 2008 14 ff947843 +block 2008 15 ff252523 +block 2009 0 ff52422e +block 2009 1 ff2b2218 +block 2009 2 ff78634a +block 2009 3 ff3f2e24 +block 2009 4 ff493c29 +block 2009 5 ff332723 +block 2009 6 ffbbb9b4 +block 2009 7 ff34352d +block 2009 8 ff3d401f +block 2009 9 ff2e3417 +block 2009 10 ff4a4b29 +block 2009 11 ff36381b +block 2009 12 ff363a24 +block 2009 13 ff2a301d +block 2009 14 ff41432c +block 2009 15 ff303321 +block 2010 * bfcac5bc +block 2010 0 ff22221e +block 2010 1 ff71756a +block 2010 2 ff835237 +block 2010 3 bfa4875d +block 2010 4 bf7f4130 +block 2010 5 ff474b43 +block 2010 6 ff33322f +block 2010 7 ff575d52 +block 2010 8 ff4a2722 +block 2010 9 ff764a32 +block 2010 10 ff7c7e74 +block 2010 13 ff938c7f +block 2010 14 ff3e3529 +block 2011 * 0f1d201d +block 2011 1 7f2b2018 +block 2011 2 0f392719 +block 2012 0 ff6e615c +block 2012 1 ff6d6251 +block 2012 2 ffaf6f48 +block 2012 3 ffab643b +block 2012 4 ffa74f3a +block 2012 5 ff716155 +block 2012 6 ff685f4f +block 2014 * 1ec2aa82 +block 2015 * ff998565 +block 2016 * e8384523 +block 2016 0 d6303f08 +block 2016 1 d6394624 +block 2016 2 d6314315 +block 2016 3 e8304214 +block 2016 4 d6394624 +block 2016 7 d6626c2a +block 2016 8 d6303f08 +block 2016 9 d6394624 +block 2016 10 d6314315 +block 2016 11 e8304214 +block 2016 12 d6394624 +block 2016 15 d6626c2a +block 2017 * d6394624 +block 2017 0 d6314315 +block 2017 1 d659672f +block 2017 2 e8361312 +block 2017 3 d6626c2a +block 2017 4 ca36471e +block 2017 6 e5203217 +block 2017 8 d6314315 +block 2017 9 d659672f +block 2017 10 e8361312 +block 2017 11 d6626c2a +block 2017 12 ca36471e +block 2017 14 e5203217 +block 2018 * ff403223 +block 2018 2 ff433524 +block 2018 3 ff32281c +block 2018 4 ff52403b +block 2018 5 ff3f4446 +block 2018 6 ff645139 +block 2018 7 ff4f3c20 +block 2018 8 ff5f4022 +block 2018 9 ff6f655a +block 2018 10 ff352d23 +block 2018 11 ff402421 +block 2018 12 ff252728 +block 2018 13 ff211b15 +block 2018 14 ff392c2c +block 2018 15 ff565045 +block 2019 * ae435331 +block 2019 0 33282928 +block 2019 1 7636312a +block 2019 3 642b2a24 +block 2019 4 33282928 +block 2019 5 7636312a +block 2019 7 642b2a24 +block 2019 8 33282928 +block 2019 9 7636312a +block 2019 11 642b2a24 +block 2019 12 33282928 +block 2019 13 7636312a +block 2019 15 642b2a24 +block 2020 * ff252623 +block 2020 1 ff442c1d +block 2020 2 ff6b442f +block 2020 3 ff415145 +block 2020 4 ff62462f +block 2020 5 ff686c65 +block 2020 6 ff947843 +block 2020 7 ff252523 +block 2020 9 ff442c1d +block 2020 10 ff6b442f +block 2020 11 ff415145 +block 2020 12 ff62462f +block 2020 13 ff686c65 +block 2020 14 ff947843 +block 2020 15 ff252523 +block 2021 * ff7d6c5d +block 2022 0 bf53442e +block 2022 1 bf392c27 +block 2022 2 bfcccbc8 +block 2022 3 bf36382f +block 2022 4 bf664b2e +block 2023 * ff483827 +block 2023 7 ff5e4b33 +block 2023 8 ff5e4b33 +block 2023 9 ff5e4b33 +block 2023 10 ff2b2218 +block 2023 11 ff2b2218 +block 2023 12 ff2b2218 +block 2023 13 ff2b2218 +block 2024 5 d7787a8b +block 2024 6 a14d4634 +block 2024 7 9c1a1d1a +block 2025 * ff998565 +block 2025 0 ff352b24 +block 2025 3 ff756346 +block 2025 4 ff937c58 +block 2025 5 ff8d7759 +block 2025 6 ff8d7759 +block 2025 7 ff5e4f3d +block 2025 8 ff8c6f4d +block 2025 9 ff8c6f4d +block 2025 10 ff7d8983 +block 2025 11 ffc3bea7 +block 2025 12 ff4a2722 +block 2025 13 ff1e1e1e +block 2025 14 ff474b43 +block 2025 15 ff784a31 +block 2026 0 ff453626 +block 2026 1 ff493c29 +block 2026 2 ff332723 +block 2026 3 ffbbb9b4 +block 2026 4 ff34352d +block 2026 5 ffa5a39d +block 2027 * ffbdb8ac +block 2027 0 ffa9a5a0 +block 2027 1 ff283312 +block 2027 2 ffc3bfb5 +block 2027 3 ffc3bfb5 +block 2027 4 ffbbb9b4 +block 2027 5 ff3b381f +block 2027 8 ffbbb9b4 +block 2027 9 ff3b381f +block 2027 12 ffbbb9b4 +block 2027 13 ff3b381f +block 2028 0 ff2b2218 +block 2028 1 ff2b2218 +block 2028 2 ff2b2218 +block 2029 * ff546147 +block 2029 0 ff8f8f79 +block 2029 2 ffaaa89a +block 2029 3 ff524c47 +block 2029 5 ff623221 +block 2029 6 ff3a3e35 +block 2029 7 ff8c8365 +block 2029 8 ff907348 +block 2029 9 ff7c7e74 +block 2029 10 ff575d52 +block 2029 11 ff303633 +block 2029 12 ff22373c +block 2029 13 ff5b2a1d +block 2029 14 ffd59458 +block 2029 15 ffd5a858 +block 2030 0 ff483d45 +block 2030 1 ff9e9a92 +block 2030 2 ff31331d +block 2030 3 ff606060 +block 2030 4 ff502c22 +block 2030 5 ff181818 +block 2030 6 ff303a37 +block 2030 7 ff88794a +block 2030 8 ff554532 +block 2030 9 ff74634a +block 2030 10 ff42382b +block 2030 11 ff332b23 +block 2030 12 ff282017 +block 2030 13 ff302e2a +block 2031 0 ff584b38 +block 2031 1 ff5d503c +block 2031 2 ff5d4f3b +block 2031 3 ff695c46 +block 2031 4 ff706351 +block 2031 5 ff7d715e +block 2031 6 ff7c6f5c +block 2031 7 ff8b7f6c +block 2031 8 ff725947 +block 2031 9 ff7f6856 +block 2031 10 ff7e6654 +block 2031 11 ff8d7966 +block 2031 12 ff4f3827 +block 2031 13 ff583d2a +block 2031 14 ff573d2a +block 2031 15 ff5e402c +block 2032 0 ff86322c +block 2032 1 ff561a0d +block 2033 0 ff554435 +block 2033 1 ff21211f +block 2033 2 ff7e341f +block 2033 3 ff66482c +block 2033 4 ff524131 +block 2033 5 ff270803 +block 2033 6 ffc2ac3b +block 2033 7 ffc6bca8 +block 2033 8 ff84765c +block 2033 9 ff4d3b2d +block 2033 10 ff4b5e2f +block 2034 0 ff342b1d +block 2034 1 ff253116 +block 2035 * ff8d7759 +block 2036 * ff8c6f4d +block 2037 * ff756346 +block 2038 * ff5e4f3d +block 2039 * ff937c58 +block 2040 * ff352b24 +block 2041 0 ff998565 +block 2041 1 ff756346 +block 2041 2 ff8d7759 +block 2041 3 ff5e4f3d +block 2041 4 ff352b24 +block 2041 5 ff937c58 +block 2041 6 ff74402e +block 2041 8 ff998565 +block 2041 9 ff756346 +block 2041 10 ff8d7759 +block 2041 11 ff5e4f3d +block 2041 12 ff352b24 +block 2041 13 ff937c58 +block 2041 14 ff74402e +block 2042 0 ff998565 +block 2042 1 ff756346 +block 2042 2 ff8d7759 +block 2042 3 ff5e4f3d +block 2042 4 ff352b24 +block 2042 5 ff937c58 +block 2042 6 ff74402e +block 2042 8 ff998565 +block 2042 9 ff756346 +block 2042 10 ff8d7759 +block 2042 11 ff5e4f3d +block 2042 12 ff352b24 +block 2042 13 ff937c58 +block 2042 14 ff74402e +block 2043 * ff575d52 +block 2044 * ff7c7e74 +block 2045 * ff33322f +block 2045 0 ff575d52 +block 2045 1 ff7c7e74 +block 2045 2 ff8c6f4d +block 2045 3 ff303633 +block 2045 4 ff22373c +block 2045 5 ff5b2a1d +block 2045 7 ff474b43 +block 2045 8 ff575d52 +block 2045 9 ff7c7e74 +block 2045 10 ff8c6f4d +block 2045 11 ff303633 +block 2045 12 ff22373c +block 2045 13 ff5b2a1d +block 2045 15 ff474b43 +block 2046 * ff33322f +block 2046 0 ff575d52 +block 2046 1 ff7c7e74 +block 2046 2 ff8c6f4d +block 2046 3 ff303633 +block 2046 4 ff22373c +block 2046 5 ff5b2a1d +block 2046 7 ff474b43 +block 2046 8 ff575d52 +block 2046 9 ff7c7e74 +block 2046 10 ff8c6f4d +block 2046 11 ff303633 +block 2046 12 ff22373c +block 2046 13 ff5b2a1d +block 2046 15 ff474b43 +block 2047 0 ff4d3b2d +block 2047 1 ff4d3c32 +block 2047 2 ff74634a +block 2047 3 ff42382b +block 2047 4 ff332b23 +block 2047 8 ff4d3b2d +block 2047 9 ff4d3c32 +block 2047 10 ff74634a +block 2047 11 ff42382b +block 2047 12 ff332b23 +block 2048 0 ff4d3b2d +block 2048 1 ff4d3c32 +block 2048 2 ff74634a +block 2048 3 ff42382b +block 2048 4 ff332b23 +block 2048 8 ff4d3b2d +block 2048 9 ff4d3c32 +block 2048 10 ff74634a +block 2048 11 ff42382b +block 2048 12 ff332b23 +block 2049 * ff303633 +block 2050 * ff22373c +block 2051 * ff5b2a1d +block 2052 0 ff7a7c71 +block 2052 1 ff5a6a50 +block 2052 2 ff45392a +block 2052 3 ff9a7b52 +block 2052 4 ff8d7e62 +block 2052 5 ff675842 +block 2052 6 ff837056 +block 2052 7 ff584a3a +block 2052 8 ff7e6445 +block 2052 9 ff302e2a +block 2052 10 ff575d52 +block 2052 11 ff474b43 +block 2052 12 ff33322f +block 2052 13 ff7c7e74 +block 2052 14 ff835237 +block 2052 15 ffbdb8ac +block 2053 0 958a8579 +block 2053 1 2c534740 +block 2053 2 3250463e +block 2053 3 2f171916 +block 2053 4 2b161815 +block 2053 5 008a9039 +block 2053 6 01131313 +block 2053 7 588c9bac +block 2053 8 835e3732 +block 2053 9 9577563d +block 2053 10 716d441c +block 2053 11 65424849 +block 2053 12 63886f5e +block 2053 13 573f5026 +block 2053 14 8662181d +block 2053 15 423f522e +block 2054 * ff937c52 +block 2055 * ff2d271e +block 2056 * fe443627 +block 2057 * 786b6353 +block 2058 0 ff92846d +block 2058 4 ff74634a +block 2058 8 ff74634a +block 2058 12 ff74634a +block 2059 0 5a382c1e +block 2059 1 71435028 +block 2059 2 652d3618 +block 2059 3 7e352916 +block 2059 4 72482013 +block 2059 5 70373e38 +block 2059 6 723a264a +block 2059 7 7746381c +block 2059 8 7c3a3729 +block 2059 9 4c4e2f1b +block 2059 10 742a4337 +block 2059 11 71343a18 +block 2059 12 82423856 +block 2059 13 7f483f3e +block 2059 14 243c3b3e +block 2059 15 1f525f46 +block 2060 0 81352c14 +block 2060 1 406c6e5a +block 2060 2 40393547 +block 2060 3 7f423420 +block 2060 4 724c354a +block 2060 5 40503121 +block 2060 6 3946546d +block 2060 7 4056461f +block 2060 8 8136312e +block 2060 9 522f381b +block 2060 10 6f5a475a +block 2060 11 8f331612 +block 2060 12 4a4a453d +block 2060 13 4a4d432d +block 2061 0 23464648 +block 2061 1 2b8e6d55 +block 2061 2 43856651 +block 2061 3 1a945d25 +block 2061 4 4c9f703a +block 2061 5 2b4e677c +block 2061 6 434a4337 +block 2061 7 2d947159 +block 2061 8 2b4a4337 +block 2061 9 4a7a5c3f +block 2061 10 1a4a3628 +block 2061 11 4c624e3f +block 2061 12 4a7e674b +block 2062 0 239d5a4e +block 2062 1 2397584c +block 2062 2 30693725 +block 2062 3 1a74443e +block 2062 4 4c855750 +block 2062 5 279e564b +block 2062 6 30804e3f +block 2062 7 299c6156 +block 2062 8 29914e45 +block 2063 0 64324a22 +block 2064 1 ff2a2118 +block 2064 2 c194896c +block 2064 5 ff2a2118 +block 2064 6 c194896c +block 2064 9 ff2a2118 +block 2064 10 c194896c +block 2064 13 ff2a2118 +block 2064 14 c194896c +block 2065 0 1f282c28 +block 2065 2 1f382d20 +block 2065 3 12d6b656 +block 2065 4 68353633 +block 2065 5 2f3e352b +block 2065 6 339e9177 +block 2065 8 1f282c28 +block 2065 10 1f382d20 +block 2065 11 12d6b656 +block 2065 12 68353633 +block 2065 13 2f3e352b +block 2065 14 339e9177 +block 2066 0 5d565e56 +block 2066 1 5d3e3326 +block 2066 2 ff252623 +block 2066 4 3f1c1c1a +block 2066 5 25596e5b +block 2066 6 ff5e4b33 +block 2066 7 c3b07c45 +block 2066 8 dfa57321 +block 2066 9 ff3f2e24 +block 2066 10 3d490707 +block 2066 11 65391413 +block 2067 0 ff2b2218 +block 2067 1 ff78634a +block 2067 2 ff3f2e24 +block 2067 3 ff7a7d72 +block 2067 4 ff546147 +block 2067 5 ff22221e +block 2067 6 ff9a7b52 +block 2067 7 ff8d7e62 +block 2067 8 ff675842 +block 2067 9 ff837056 +block 2067 10 ff584a3a +block 2067 11 ff7e6445 +block 2067 12 ff7c7e74 +block 2067 13 ff575d52 +block 2067 14 ff938c7f +block 2067 15 ff3e3529 +block 2068 0 ff303633 +block 2068 1 ff22373c +block 2068 2 ff5b2a1d +block 2068 3 ff58412a +block 2068 4 ff313015 +block 2068 5 ff947843 +block 2069 * bf433625 +block 2069 0 bf513f2b +block 2069 2 bf513f2b +block 2069 4 bf513f2b +block 2069 6 bf513f2b +block 2069 8 bf513f2b +block 2069 10 bf513f2b +block 2069 12 bf513f2b +block 2069 14 bf513f2b +block 2071 * ff897457 +block 2071 3 ff3e413d +block 2071 4 ff464a48 +block 2071 5 ff8c8c82 +block 2071 6 ff938c7f +block 2071 7 ff837c6f +block 2071 8 ff847d6f +block 2071 9 ff74402e +block 2071 10 ff483d2e +block 2071 11 ff4d4232 +block 2071 12 ff54493a +block 2071 13 ff3e3529 +block 2071 14 ffa0988a +block 2071 15 ff3b4228 +block 2073 * ff74634a +block 2074 * ff42382b +block 2075 * ff9f9f9f +block 2076 0 ff2e2e16 +block 2076 1 ff322714 +block 2076 2 ff2c3014 +block 2076 4 ff352d20 +block 2076 5 ff959184 +block 2076 6 ff343827 +block 2076 8 ff352d20 +block 2076 9 ff959184 +block 2076 10 ff343827 +block 2076 12 ff352d20 +block 2076 13 ff959184 +block 2076 14 ff343827 +block 2077 * ca36471e +block 2077 3 e82b3a15 +block 2077 5 f1354015 +block 2077 11 e82b3a15 +block 2077 13 f1354015 +block 2078 0 ff7b6a51 +block 2078 1 ff827358 +block 2078 2 ffe0e4e6 +block 2078 3 ffa1a09d +block 2078 4 ffa4876a +block 2078 5 ff9c754d +block 2078 8 ff7b6a51 +block 2078 9 ff827358 +block 2078 10 ffe0e4e6 +block 2078 11 ffa1a09d +block 2078 12 ffa4876a +block 2078 13 ff9c754d +block 2079 0 ff7b6a51 +block 2079 1 ff827358 +block 2079 2 ffe0e4e6 +block 2079 3 ffa1a09d +block 2079 4 ffa4876a +block 2079 5 ff9c754d +block 2079 8 ff7b6a51 +block 2079 9 ff827358 +block 2079 10 ffe0e4e6 +block 2079 11 ffa1a09d +block 2079 12 ffa4876a +block 2079 13 ff9c754d +block 2080 * 25564941 +block 2080 0 2c534740 +block 2080 1 2c534740 +block 2080 2 2c534740 +block 2080 3 2c534740 +block 2080 4 2c534740 +block 2080 5 2c534740 +block 2081 * ff6e6755 +block 2081 0 ff141414 +block 2081 1 ff141414 +block 2081 2 ff141414 +block 2081 3 ff141414 +block 2081 4 ff141414 +block 2081 5 ff141414 +block 2081 6 ff141414 +block 2081 7 ff141414 +block 2082 * ff776e5a +block 2082 0 ff3f3527 +block 2082 1 ff3f3527 +block 2082 2 ff3f3527 +block 2082 3 ff3f3527 +block 2082 4 ff3f3527 +block 2082 5 ff3f3527 +block 2082 6 ff3f3527 +block 2082 7 ff3f3527 +block 2083 * ff76664f +block 2083 0 ff695a44 +block 2083 1 ff695a44 +block 2083 2 ff695a44 +block 2083 3 ff695a44 +block 2083 4 ff695a44 +block 2083 5 ff695a44 +block 2083 6 ff695a44 +block 2083 7 ff695a44 +block 2084 * ff453932 +block 2084 8 ff655847 +block 2084 9 ff655847 +block 2084 10 ff655847 +block 2084 11 ff655847 +block 2084 12 ff655847 +block 2084 13 ff655847 +block 2084 14 ff655847 +block 2084 15 ff655847 +block 2085 * ffa1a092 +block 2085 0 ff2a446a +block 2085 1 ff2a446a +block 2085 2 ff2a446a +block 2085 3 ff2a446a +block 2085 4 ff2a446a +block 2085 5 ff2a446a +block 2085 6 ff2a446a +block 2085 7 ff2a446a +block 2086 * ff6a322a +block 2086 8 ffa89d8a +block 2086 9 ffa89d8a +block 2086 10 ffa89d8a +block 2086 11 ffa89d8a +block 2086 12 ffa89d8a +block 2086 13 ffa89d8a +block 2086 14 ffa89d8a +block 2086 15 ffa89d8a +block 2087 * ff543b30 +block 2087 8 ff8f8880 +block 2087 9 ff8f8880 +block 2087 10 ff8f8880 +block 2087 11 ff8f8880 +block 2087 12 ff8f8880 +block 2087 13 ff8f8880 +block 2087 14 ff8f8880 +block 2087 15 ff8f8880 +block 2088 * ff8f8a80 +block 2088 0 ff534c30 +block 2088 1 ff534c30 +block 2088 2 ff534c30 +block 2088 3 ff534c30 +block 2088 4 ff534c30 +block 2088 5 ff534c30 +block 2088 6 ff534c30 +block 2088 7 ff534c30 +block 2089 * a3635a4e +block 2089 0 a063594e +block 2089 1 a063594e +block 2089 2 a063594e +block 2089 3 a063594e +block 2089 4 a063594e +block 2089 5 a063594e +block 2089 6 a063594e +block 2089 7 a063594e +block 2090 * ff35381f +block 2091 * a660564a +block 2091 0 975c5146 +block 2091 1 975c5146 +block 2091 2 975c5146 +block 2091 3 975c5146 +block 2091 4 975c5146 +block 2091 5 975c5146 +block 2092 * ff74402e +block 2093 * ff453927 +block 2093 4 ff453a34 +block 2093 5 ff201d1b +block 2093 6 ff453d36 +block 2093 7 ff20221e +block 2093 8 ff453a34 +block 2093 9 ff201d1b +block 2093 10 ff453d36 +block 2093 11 ff20221e +block 2093 12 ff453a34 +block 2093 13 ff201d1b +block 2093 14 ff453d36 +block 2093 15 ff20221e +block 2107 * ff415145 +block 2108 * ff62462f +block 2109 * ff947843 +block 2110 * ff1e438c +block 2111 * ff42433c +block 2112 * ff47d761 +block 2113 * fff2fdfd +block 2114 * ff302e2a +block 2115 0 ff302e2a +block 2115 8 ff302e2a +block 2116 0 ff302e2a +block 2116 8 ff302e2a +block 2117 * ff535353 +block 2118 * ff474b43 +block 2119 * ffe1e4e7 +block 2119 0 ffe1e4e6 +block 2119 1 ffe1e4e6 +block 2119 2 ffe1e4e6 +block 2119 3 ffe1e4e6 +block 2119 4 ffe1e4e6 +block 2119 5 ffe1e4e6 +block 2120 * ff998565 +block 2120 3 ff756346 +block 2120 4 ff937c58 +block 2120 5 ff8d7759 +block 2120 6 ff8d7759 +block 2120 7 ff5e4f3d +block 2120 8 ff8c6f4d +block 2120 9 ff8c6f4d +block 2120 10 ff352b24 +block 2120 11 ff303633 +block 2120 12 ff22373c +block 2120 13 ff5b2a1d +block 2120 14 ff58412a +block 2120 15 ff313015 +block 2121 * 46d78114 +block 2122 0 bf513f2b +block 2122 2 bf513f2b +block 2122 4 bf513f2b +block 2122 6 bf513f2b +block 2122 8 bf513f2b +block 2122 10 bf513f2b +block 2122 12 bf513f2b +block 2122 14 bf513f2b +block 2125 * 2a171916 +block 2125 0 2f171916 +block 2125 1 2f171916 +block 2125 2 2f171916 +block 2125 3 2f171916 +block 2125 4 2f171916 +block 2125 5 2f171916 +block 2126 0 ff58412a +block 2126 1 ff313015 +block 2126 2 ff76593b +block 2126 3 ff958c7f +block 2126 4 ff4d3326 +block 2126 7 ff9f9d98 +block 2126 8 ff67695e +block 2126 9 ff9c805a +block 2126 10 ff9f7f55 +block 2126 11 ffab8957 +block 2126 12 ffbb965f +block 2126 13 ffa3865f +block 2126 14 ffab8957 +block 2126 15 ff9f7f55 +block 2127 * ff9f7f55 +block 2127 0 ff58412a +block 2127 1 ff313015 +block 2127 2 ff938c7f +block 2127 3 ff3e3529 +block 2127 4 ff9c805a +block 2127 6 ffab8957 +block 2127 7 ff713629 +block 2127 8 ff58412a +block 2127 9 ff313015 +block 2127 10 ff938c7f +block 2127 11 ff3e3529 +block 2127 12 ff9c805a +block 2127 14 ffab8957 +block 2127 15 ff713629 +block 2128 * ff9f7f55 +block 2128 0 ff58412a +block 2128 1 ff313015 +block 2128 2 ff938c7f +block 2128 3 ff3e3529 +block 2128 4 ff9c805a +block 2128 6 ffab8957 +block 2128 7 ff713629 +block 2128 8 ff58412a +block 2128 9 ff313015 +block 2128 10 ff938c7f +block 2128 11 ff3e3529 +block 2128 12 ff9c805a +block 2128 14 ffab8957 +block 2128 15 ff713629 +block 2129 * ff58412a +block 2130 * ff313015 +block 2131 0 ff303633 +block 2131 1 ff22373c +block 2131 2 ff5b2a1d +block 2131 3 ff58412a +block 2131 4 ff313015 +block 2131 5 ff938c7f +block 2131 6 ff3e3529 +block 2131 7 ff89704d +block 2131 8 ff8e704a +block 2131 9 ff98794d +block 2131 10 ff644a2d +block 2131 11 ff252523 +block 2132 * ff71462c +block 2133 * ff5b4b3a +block 2134 * ff7b7e77 +block 2135 * ff938c7f +block 2136 * ff4e351d +block 2136 0 ffe1dfdc +block 2136 1 ffb77442 +block 2136 3 ff848fab +block 2136 4 ffc8a239 +block 2136 5 ffd4caaa +block 2136 6 ffc28c99 +block 2136 7 ff3a3835 +block 2136 8 ffe1dfdc +block 2136 9 ffb77442 +block 2136 11 ff848fab +block 2136 12 ffc8a239 +block 2136 13 ffd4caaa +block 2136 14 ffc28c99 +block 2136 15 ff3a3835 +block 2137 * ff4e351d +block 2137 0 ffe1dfdc +block 2137 1 ffb77442 +block 2137 3 ff848fab +block 2137 4 ffc8a239 +block 2137 5 ffd4caaa +block 2137 6 ffc28c99 +block 2137 7 ff3a3835 +block 2137 8 ffe1dfdc +block 2137 9 ffb77442 +block 2137 11 ff848fab +block 2137 12 ffc8a239 +block 2137 13 ffd4caaa +block 2137 14 ffc28c99 +block 2137 15 ff3a3835 +block 2138 * ff1b1817 +block 2138 0 ff7b7970 +block 2138 1 ff354c4d +block 2138 2 ff59425e +block 2138 3 ff343e4f +block 2138 4 ff281c15 +block 2138 5 ff495827 +block 2138 6 ff78342c +block 2138 8 ff7b7970 +block 2138 9 ff354c4d +block 2138 10 ff59425e +block 2138 11 ff343e4f +block 2138 12 ff281c15 +block 2138 13 ff495827 +block 2138 14 ff78342c +block 2139 * ff1b1817 +block 2139 0 ff7b7970 +block 2139 1 ff354c4d +block 2139 2 ff59425e +block 2139 3 ff343e4f +block 2139 4 ff281c15 +block 2139 5 ff495827 +block 2139 6 ff78342c +block 2139 8 ff7b7970 +block 2139 9 ff354c4d +block 2139 10 ff59425e +block 2139 11 ff343e4f +block 2139 12 ff281c15 +block 2139 13 ff495827 +block 2139 14 ff78342c +block 2140 * ff2c241b +block 2141 * ffaf6f48 +block 2142 * ffab643b +block 2143 * ffa74f3a +block 2144 * a36c563c +block 2144 1 ae2c261f +block 2145 * ff492317 +block 2146 * ff2f3837 +block 2147 * ff3e3529 +block 2148 0 ff896843 +block 2148 4 ff644a2d +block 2148 8 ff644a2d +block 2148 12 ff644a2d +block 2149 0 ffa4876a +block 2149 1 ffd0a669 +block 2149 2 ff9c754d +block 2150 0 ff9c805a +block 2150 1 ff9f7f55 +block 2150 2 ffab8957 +block 2150 3 ff684c3c +block 2150 4 ff252523 +block 2150 5 ff3f423e +block 2150 6 ffa9a69f +block 2150 7 ff292824 +block 2150 8 ff6b442f +block 2150 9 ff74402e +block 2151 * ff9c805a +block 2152 * ff9f7f55 +block 2153 * ffab8957 +block 2154 0 ff89704d +block 2154 1 ff8e704a +block 2154 2 ff98794d +block 2154 3 ff52422e +block 2154 4 ff52422e +block 2154 5 ff2b2218 +block 2154 6 ff78634a +block 2154 7 ff3f2e24 +block 2154 8 ff684c3c +block 2155 0 341a2b0f +block 2155 1 bb192a0f +block 2155 2 371b2c10 +block 2155 3 5e6d6863 +block 2156 0 554f3720 +block 2157 0 ff713629 +block 2157 1 ff42433c +block 2157 2 ff50524a +block 2157 3 ff9a846b +block 2157 4 ff4f5748 +block 2157 5 ff9c917d +block 2157 6 ff988879 +block 2157 7 ff554634 +block 2157 8 ff452622 +block 2157 9 ff392e20 +block 2157 10 ff201a12 +block 2157 11 ffc6c7c1 +block 2157 12 ffd1ccc0 +block 2157 13 ffd4c0af +block 2157 14 ffd7b478 +block 2159 * ff713629 +block 2160 0 572c2e29 +block 2160 4 572c2e29 +block 2160 8 572c2e29 +block 2160 12 572c2e29 +block 2163 0 ff804231 +block 2163 1 ff4a2722 +block 2163 2 ff684c3c +block 2163 3 ff292824 +block 2163 8 ff804231 +block 2163 9 ff4a2722 +block 2163 10 ff684c3c +block 2163 11 ff292824 +block 2164 * ff000000 +block 2164 0 ff804231 +block 2164 1 ff4a2722 +block 2164 2 ff684c3c +block 2164 3 ff292824 +block 2164 8 ff804231 +block 2164 9 ff4a2722 +block 2164 10 ff684c3c +block 2164 11 ff292824 +block 2165 * ffddd59c +block 2166 * ff33291f +block 2166 1 ff282119 +block 2166 3 ff282119 +block 2166 5 ff282119 +block 2166 7 ff282119 +block 2166 9 ff282119 +block 2166 11 ff282119 +block 2166 13 ff282119 +block 2166 15 ff282119 +block 2167 * ff796144 +block 2168 0 ff534237 +block 2168 1 ff382e27 +block 2168 2 ff825b2c +block 2168 3 ff572d22 +block 2168 4 ff938039 +block 2168 5 ff57762c +block 2168 6 ff5a562f +block 2168 7 ff895725 +block 2168 8 ff702d2a +block 2168 9 ff3d4d26 +block 2168 10 ff543844 +block 2168 11 ff382013 +block 2169 * ff4a2722 +block 2170 * ff90938b +block 2175 0 8b3d0909 +block 2176 * ff382e27 +block 2176 0 ff534237 +block 2176 2 ff825b2c +block 2176 3 ff572d22 +block 2176 4 ff938039 +block 2176 5 ff57762c +block 2176 6 ff5a562f +block 2176 7 ff895725 +block 2176 8 ff534237 +block 2176 10 ff825b2c +block 2176 11 ff572d22 +block 2176 12 ff938039 +block 2176 13 ff57762c +block 2176 14 ff5a562f +block 2176 15 ff895725 +block 2177 * ff382e27 +block 2177 0 ff534237 +block 2177 2 ff825b2c +block 2177 3 ff572d22 +block 2177 4 ff938039 +block 2177 5 ff57762c +block 2177 6 ff5a562f +block 2177 7 ff895725 +block 2177 8 ff534237 +block 2177 10 ff825b2c +block 2177 11 ff572d22 +block 2177 12 ff938039 +block 2177 13 ff57762c +block 2177 14 ff5a562f +block 2177 15 ff895725 +block 2178 0 ff702d2a +block 2178 8 ff702d2a +block 2179 0 ff702d2a +block 2179 8 ff702d2a +block 2180 * ff493925 +block 2180 1 ff624f3a +block 2180 2 ff3b291e +block 2180 5 ff624f3a +block 2180 6 ff3b291e +block 2180 9 ff624f3a +block 2180 10 ff3b291e +block 2180 13 ff624f3a +block 2180 14 ff3b291e +block 2181 * ff684c3c +block 2182 0 8ea59474 +block 2184 0 ff684c3c +block 2184 1 ff614537 +block 2184 2 ff674c3a +block 2184 3 ff744133 +block 2184 4 ff744536 +block 2184 5 ffd4d4d0 +block 2184 6 ffa9a69f +block 2184 7 ff292824 +block 2184 8 ff33322f +block 2187 0 3d676428 +block 2187 1 3d30632a +block 2187 2 3d682553 +block 2187 3 3d302a63 +block 2187 4 3d734c2a +block 2187 5 3d313131 +block 2187 6 3d632a2c +block 2188 0 b253302a +block 2188 1 b2533a28 +block 2188 2 b2524828 +block 2188 3 b2374e35 +block 2188 4 b22c3841 +block 2188 5 b2442f4a +block 2188 6 b2512f34 +block 2188 7 b22e2b27 +block 2189 * c9462c25 +block 2189 1 c9463325 +block 2189 2 c9453c24 +block 2189 3 c931412d +block 2189 4 c92a3136 +block 2189 5 c93c2b3c +block 2189 6 c9442b2c +block 2189 7 c92c2924 +block 2190 * ff252523 +block 2191 * ff844331 +block 2193 * 46daf0f4 +block 2198 * ff42433c +block 2199 * ffa9a69f +block 2200 * ff292824 +block 2201 * ff33322f +block 2205 0 30adb597 +block 2205 1 7b2a4125 +block 2205 2 47284420 +block 2205 3 6f324323 +block 2205 4 585c412e +block 2205 5 3d773d37 +block 2221 * c4c18cf0 +block 2221 0 d6626c2a +block 2221 1 d6394624 +block 2221 2 d6314315 +block 2221 3 e8304214 +block 2221 4 ff1f2f16 +block 2221 5 e5112105 +block 2221 8 d6626c2a +block 2221 9 d6394624 +block 2221 10 d6314315 +block 2221 11 e8304214 +block 2221 12 ff1f2f16 +block 2221 13 e5112105 +block 2222 * ff763a2a +block 2222 4 ff6f4128 +block 2222 5 ff6f4128 +block 2222 6 ff6f4128 +block 2222 7 ff6f4128 +block 2222 8 ff6f4128 +block 2222 9 ff6f4128 +block 2222 10 ff6f4128 +block 2222 11 ff6f4128 +block 2223 * ff637439 +block 2223 4 ff5d552d +block 2223 5 ff5d552d +block 2223 6 ff5d552d +block 2223 7 ff5d552d +block 2223 8 ff5d552d +block 2223 9 ff5d552d +block 2223 10 ff5d552d +block 2223 11 ff5d552d +block 2224 * ff875218 +block 2224 4 ff74491e +block 2224 5 ff74491e +block 2224 6 ff74491e +block 2224 7 ff74491e +block 2224 8 ff74491e +block 2224 9 ff74491e +block 2224 10 ff74491e +block 2224 11 ff74491e +block 2225 * ff856336 +block 2225 4 ff74532d +block 2225 5 ff74532d +block 2225 6 ff74532d +block 2225 7 ff74532d +block 2225 8 ff74532d +block 2225 9 ff74532d +block 2225 10 ff74532d +block 2225 11 ff74532d +block 2226 * ff8e662d +block 2226 4 ff7a5729 +block 2226 5 ff7a5729 +block 2226 6 ff7a5729 +block 2226 7 ff7a5729 +block 2226 8 ff7a5729 +block 2226 9 ff7a5729 +block 2226 10 ff7a5729 +block 2226 11 ff7a5729 +block 2227 * ffb6a28d +block 2227 4 ff8c623c +block 2227 5 ff8c623c +block 2227 6 ff8c623c +block 2227 7 ff8c623c +block 2227 8 ff8c623c +block 2227 9 ff8c623c +block 2227 10 ff8c623c +block 2227 11 ff8c623c +block 2228 * ff637216 +block 2228 0 ffbe9717 +block 2228 1 ffbe9717 +block 2228 2 ffbe9717 +block 2228 3 ffbe9717 +block 2228 12 ffbe9717 +block 2228 13 ffbe9717 +block 2228 14 ffbe9717 +block 2228 15 ffbe9717 +block 2229 * ff6b4723 +block 2229 0 ff7c007c +block 2229 1 ff7c007c +block 2229 2 ff7c007c +block 2229 3 ff7c007c +block 2229 12 ff7c007c +block 2229 13 ff7c007c +block 2229 14 ff7c007c +block 2229 15 ff7c007c +block 2230 * ff6b3f28 +block 2230 0 ff703627 +block 2230 1 ff703627 +block 2230 2 ff703627 +block 2230 3 ff703627 +block 2230 12 ff703627 +block 2230 13 ff703627 +block 2230 14 ff703627 +block 2230 15 ff703627 +block 2231 * ba808080 +block 2231 1 59979597 +block 2232 * 97756c1d +block 2242 * 46daf0f4 +block 2243 * fff2c83e +block 2244 * fff2c83e +block 2245 * ff6c5130 +block 2246 * ffa2824f +block 2247 * ff444444 +block 2248 * ff6c5130 +block 2249 * ff7d7d7d +block 2250 * ff6c5130 +block 2251 * ff6c5130 +block 2252 * ff6c5130 +block 2253 * ff6c5130 +block 2254 * ff6c5130 +block 2255 * ff6c5130 +block 2290 * ff6c5130 +block 2291 * ff6c5130 +block 2292 * 3733394a +block 2293 * 3733394a +block 2294 * 3733394a +block 2295 * 3733394a +block 2296 * 3733394a +block 2297 * 3733394a +block 2298 * 3733394a +block 2299 * 3733394a +block 2300 * ff988b62 +block 2301 * ff4f2d0e +block 2302 * ff7c7c7c +block 2303 0 69183104 +block 2303 1 485d6121 +block 2303 2 65294a09 +block 2303 3 362b4c0a +block 2303 4 494b651e +block 2303 5 213f641a +block 2303 6 4f275218 +block 2303 7 5b48560b +block 2303 8 4a2e5509 +block 2303 9 36616e2c +block 2303 10 48516625 +block 2303 11 21505e17 +block 2303 12 654b661f +block 2303 13 49294a0a +block 2303 14 7e737963 +block 2303 15 60737961 +block 2304 * 8e506c42 +block 2305 * 8e53581e +block 2306 * 8e4b5030 +block 2307 * 8e33633e +block 2308 * 8e4f6a22 +block 2309 * 8e3c6b22 +block 2310 * 8e525934 +block 2311 * 8e36522b +block 2312 * 8e3b5730 +block 2313 * 8e3b5e34 +block 2314 * 8e3e4740 +block 2315 * 8e274c3d +block 2316 * 8e3e541c +block 2317 * 8e1f570c +block 2318 * 8e3c340b +block 2319 * 8e2b471f +block 2320 * 46daf0f4 +block 2321 * 46daf0f4 +block 2322 * 46daf0f4 +block 2323 * 583b5007 +block 2324 * 3733394a +block 2325 * 3733394a +block 2326 * 3733394a +block 2327 * 3733394a +block 2328 * 3733394a +block 2329 * 3733394a +block 2330 * 3733394a +block 2331 * 3733394a +block 2332 * 3733394a +block 2333 * 3733394a +block 2334 * 3733394a +block 2335 * 3733394a +block 2336 * 3733394a +block 2337 * 3733394a +block 2338 * 3733394a +block 2339 * 3733394a +block 2340 * 3733394a +block 2341 * 3733394a +block 2342 * 3733394a +block 2343 * 3733394a +block 2344 * 3733394a +block 2345 * 3733394a +block 2346 * 3733394a +block 2347 * 3733394a +block 2348 * 3733394a +block 2349 * 3733394a +block 2350 * 3733394a +block 2351 * 3733394a +block 2352 * 3733394a +block 2353 * 3733394a +block 2354 * 3733394a +block 2355 * 3733394a +block 2356 * 3733394a +block 2357 * 3733394a +block 2358 * 3733394a +block 2359 * 3733394a +block 2360 * 3733394a +block 2361 * 3733394a +block 2362 * 3733394a +block 2363 * 3733394a +block 2364 * 3733394a +block 2365 * 3733394a +block 2366 * 3733394a +block 2367 * 3733394a +block 2368 * 3733394a +block 2369 * 3733394a +block 2370 * 3733394a +block 2371 * 3733394a +block 2372 * 3733394a +block 2373 * 3733394a +block 2374 * 3733394a +block 2375 * 3733394a +block 2376 * 3733394a +block 2377 * 3733394a +block 2378 * 3733394a +block 2379 * 3733394a +block 2380 * 3733394a +block 2381 * 3733394a +block 2382 * 3733394a +block 2383 * 3733394a +block 2384 * 3733394a +block 2385 * 3733394a +block 2386 * 3733394a +block 2387 * 3733394a +block 2388 * 3733394a +block 2389 * 3733394a +block 2390 * 3733394a +block 2391 * 3733394a +block 2392 * 3733394a +block 2393 * 3733394a +block 2394 * 3733394a +block 2395 * 3733394a +block 2400 * ffb6dde5 +block 2401 * ffdfcef8 +block 2402 * ff81b2c2 +block 2403 * ff81b2c2 +block 2404 * ff81b2c2 +block 2405 * ff81b2c2 +block 2406 * ff8e849f +block 2407 * ff8e849f +block 2408 * ff8e849f +block 2409 * ff8e849f +block 2410 * ff069667 +block 2411 * ff77777b +block 2412 * ff807b7a +block 2413 * ff70542b +block 2414 * ff8e6a4f +block 2415 * ff916548 +block 2416 * ff8b91a3 +block 2417 * ff9098ab +block 2418 * ff7e8194 +block 2419 * ff848a9d +block 2420 * ff808496 +block 2421 * ff8a90a2 +block 2422 * ff8a90a2 +block 2423 * ff9098ab +block 2423 4 ff83889c +block 2423 5 ff83889c +block 2423 6 ff83889c +block 2423 7 ff83889c +block 2423 8 ff83889c +block 2423 9 ff83889c +block 2423 10 ff83889c +block 2423 11 ff83889c +block 2424 * 3733394a +block 2426 * ff9aa5b9 +block 2426 4 ff2d2b32 +block 2426 5 ff2d2b32 +block 2426 6 ff2d2b32 +block 2426 7 ff2d2b32 +block 2426 8 ff2d2b32 +block 2426 9 ff2d2b32 +block 2426 10 ff2d2b32 +block 2426 11 ff2d2b32 +block 2427 * ff9aa5b9 +block 2427 4 ff31313a +block 2427 5 ff31313a +block 2427 6 ff31313a +block 2427 7 ff31313a +block 2427 8 ff31313a +block 2427 9 ff31313a +block 2427 10 ff31313a +block 2427 11 ff31313a +block 2428 * ff9aa5b9 +block 2428 4 ff36333d +block 2428 5 ff36333d +block 2428 6 ff36333d +block 2428 7 ff36333d +block 2428 8 ff36333d +block 2428 9 ff36333d +block 2428 10 ff36333d +block 2428 11 ff36333d +block 2430 * ffd2def0 +block 2431 * ffd2def0 +block 2432 * ffd2def0 +block 2433 * ffd2def0 +block 2434 * ffd2def0 +block 2435 * ffbfcddf +block 2437 * ffd2def0 +block 2438 * ffd2def0 +block 2439 * dba9b9cb +block 2440 * ffd2def0 +block 2441 * ff4b2b18 +block 2442 * fff5e9b5 +block 2443 * ffbb796d +block 2444 * ff4c4c4d +block 2445 * ff4c4c4d +block 2446 * ff4c4c4d +block 2447 * ff4c4c4d +block 2448 * ff4c4c4d +block 2449 * ff888c95 +block 2450 * ff888c95 +block 2451 * ff888c95 +block 2452 * ff888c95 +block 2453 * ff828791 +block 2454 * ff828791 +block 2455 * ff828791 +block 2456 * ff828791 +block 2458 * ff473562 +block 2459 * ff525354 +block 2460 * ffeaf8fc +block 2461 * ffeaf8fc +block 2462 * ffeaf8fc +block 2463 * ffeaf8fc +block 2464 * ffeaf8fc +block 2465 * ff313540 +block 2466 * ff313540 +block 2467 * ff313540 +block 2468 * ff313540 +block 2469 * ff4a4f5d +block 2470 * ff4a4f5d +block 2471 * ff4a4f5d +block 2472 * ff4a4f5d +block 2474 * ffb7d1fd +block 2475 * ffa9c8fc +block 2476 * ffbdd5fe +block 2477 * ffbfd8f6 +block 2478 * ffcad0d8 +block 2478 4 fff2fdfd +block 2478 5 fff2fdfd +block 2478 6 fff2fdfd +block 2478 7 fff2fdfd +block 2478 8 fff2fdfd +block 2478 9 fff2fdfd +block 2478 10 fff2fdfd +block 2478 11 fff2fdfd +block 2479 * fff2fdfd +block 2479 0 ffa0a9ba +block 2479 1 ffa0a9ba +block 2479 2 ffa0a9ba +block 2479 3 ffa0a9ba +block 2479 12 ffa0a9ba +block 2479 13 ffa0a9ba +block 2479 14 ffa0a9ba +block 2479 15 ffa0a9ba +block 2480 * ffb3bccc +block 2480 4 fff2fdfd +block 2480 5 fff2fdfd +block 2480 6 fff2fdfd +block 2480 7 fff2fdfd +block 2480 8 fff2fdfd +block 2480 9 fff2fdfd +block 2480 10 fff2fdfd +block 2480 11 fff2fdfd +block 2481 * fff2fdfd +block 2481 0 ff9aa0b0 +block 2481 1 ff9aa0b0 +block 2481 2 ff9aa0b0 +block 2481 3 ff9aa0b0 +block 2481 12 ff9aa0b0 +block 2481 13 ff9aa0b0 +block 2481 14 ff9aa0b0 +block 2481 15 ff9aa0b0 +block 2482 * fff2fdfd +block 2482 0 ffa0a4b1 +block 2482 1 ffa0a4b1 +block 2482 2 ffa0a4b1 +block 2482 3 ffa0a4b1 +block 2482 12 ffa0a4b1 +block 2482 13 ffa0a4b1 +block 2482 14 ffa0a4b1 +block 2482 15 ffa0a4b1 +block 2483 * ff9da4b4 +block 2483 4 fff2fdfd +block 2483 5 fff2fdfd +block 2483 6 fff2fdfd +block 2483 7 fff2fdfd +block 2483 8 fff2fdfd +block 2483 9 fff2fdfd +block 2483 10 fff2fdfd +block 2483 11 fff2fdfd +block 2484 * ff8997a7 +block 2484 4 fff2fdfd +block 2484 5 fff2fdfd +block 2484 6 fff2fdfd +block 2484 7 fff2fdfd +block 2484 8 fff2fdfd +block 2484 9 fff2fdfd +block 2484 10 fff2fdfd +block 2484 11 fff2fdfd +block 2485 * fff2fdfd +block 2485 0 ffdeeaee +block 2485 1 ffdeeaee +block 2485 2 ffdeeaee +block 2485 3 ffdeeaee +block 2485 12 ffdeeaee +block 2485 13 ffdeeaee +block 2485 14 ffdeeaee +block 2485 15 ffdeeaee +block 2486 * ffb7c0cc +block 2486 4 fff2fdfd +block 2486 5 fff2fdfd +block 2486 6 fff2fdfd +block 2486 7 fff2fdfd +block 2486 8 fff2fdfd +block 2486 9 fff2fdfd +block 2486 10 fff2fdfd +block 2486 11 fff2fdfd +block 2487 * ffcbd5dd +block 2487 4 fff2fdfd +block 2487 5 fff2fdfd +block 2487 6 fff2fdfd +block 2487 7 fff2fdfd +block 2487 8 fff2fdfd +block 2487 9 fff2fdfd +block 2487 10 fff2fdfd +block 2487 11 fff2fdfd +block 2488 * 7854446e +block 2488 1 4a51406b +block 2489 * 807ba7b5 +block 2489 1 437ba8b7 +block 2490 * 58707678 +block 2491 * 80828585 +block 2491 1 43747677 +block 2492 * 6c8ff7fd +block 2493 * ff7c007c +block 2493 0 ff6d6f75 +block 2493 1 ff7a6c62 +block 2493 2 ff736985 +block 2493 3 ff637280 +block 2493 4 ff76705a +block 2493 5 ff697758 +block 2493 11 ff647086 +block 2493 13 ff5b7a6e +block 2493 14 ff7f676f +block 2494 * ff7c007c +block 2494 0 ff6d6f75 +block 2494 1 ff7a6c62 +block 2494 2 ff736985 +block 2494 3 ff637280 +block 2494 4 ff76705a +block 2494 5 ff697758 +block 2494 11 ff647086 +block 2494 13 ff5b7a6e +block 2494 14 ff7f676f +block 2495 * 3733394a +block 2496 * 3733394a +block 2497 * 3733394a +block 2498 * 3733394a +block 2499 * 3733394a +block 2502 * ffdcdcdc +block 2504 * 9acccccc +block 2505 * 3733394a +block 2506 * 3733394a +block 2507 * 3733394a +block 2508 * 3733394a +block 2509 * 3733394a +block 2510 * dbc7c7c7 +block 2511 * ffdddddd +block 2512 * ffa2521b +block 2513 * ffa2521b +block 2537 * ffaf7e5b +block 2537 0 ff7c007c +block 2537 1 ff9e7150 +block 2537 2 ff9a6d4d +block 2537 3 ff9d7354 +block 2537 4 ff9e7353 +block 2537 5 ff9a6f51 +block 2537 6 ff9b7253 +block 2537 7 ff8f6b50 +block 2537 10 ff8f6547 +block 2537 11 ffa37758 +block 2537 12 ff6b4c36 +block 2537 13 ffa57756 +block 2537 14 ff896346 +block 2537 15 ff8a6347 +block 2538 * ff86718b +block 2539 * fff0a4ca +block 2540 * ff48cea2 +block 2547 * 3733394a +block 2548 * 3733394a +block 2549 * 3733394a +block 2550 * 3733394a +block 2551 * ff22242d +block 2552 * ff22242d +block 2553 * ff7c007c +block 2553 0 ff2c2e36 +block 2553 1 ff2c2727 +block 2553 2 ff252234 +block 2553 3 ff232a35 +block 2553 4 ff2c2a27 +block 2553 5 ff262c27 +block 2553 11 ff1f2636 +block 2553 13 ff1c282b +block 2553 14 ff2a1e28 +block 2554 * ff7c007c +block 2554 0 ff2c2e36 +block 2554 1 ff2c2727 +block 2554 2 ff252234 +block 2554 3 ff232a35 +block 2554 4 ff2c2a27 +block 2554 5 ff262c27 +block 2554 11 ff1f2636 +block 2554 13 ff1c282b +block 2554 14 ff2a1e28 +block 2555 * ff799872 +block 2558 * 33c7ddfe +block 2559 * 33c7ddfe +block 2560 * 8caed2db +block 2561 * 61e3effc +block 2562 * 61979cae +block 2563 * 33f3f8fd +block 2564 * ff91c0ce +block 2564 0 ffb6d3f1 +block 2564 1 ffb6d3f1 +block 2564 2 ffb6d3f1 +block 2564 3 ffb6d3f1 +block 2564 12 ffb6d3f1 +block 2564 13 ffb6d3f1 +block 2564 14 ffb6d3f1 +block 2564 15 ffb6d3f1 +block 2565 * f0c2dafe +block 2566 * cdc5dbfd +block 2567 * adbdd7f6 +block 2567 1 61b7d4f7 +block 2568 * adbdd7f6 +block 2568 1 61b7d4f7 +block 2569 * ffebe9fd +block 2570 * ffe4defd +block 2571 * ffd6cbf4 +block 2572 * ffe7e3f5 +block 2574 * ffb7dfe7 +block 2575 * ffb7dfe7 +block 2576 * ffb7dfe7 +block 2577 * ffb7dfe7 +block 2588 * ffd6cbf4 +block 2589 * ffd6cbf4 +block 2594 * ffc7e7ea +block 2595 * ffc7e7ea +block 2596 * ffc7e7ea +block 2597 * ff4b3a66 +block 2598 * ff4b3a66 +block 2599 * ff4b3a66 +block 2600 * ff4b3a66 +block 2601 * ffc5bec5 +block 2602 * ffc5bec5 +block 2603 * ffc5bec5 +block 2604 * ff2a2532 +block 2605 * ff2a2532 +block 2606 * ff2a2532 +block 2607 * ff2a2532 +block 2608 * ff2a2532 +block 2609 * ff9ca4b5 +block 2610 * ff9ca4b5 +block 2611 * ff9ca4b5 +block 2612 * ff9ca4b5 +block 2613 * ff9ca4b5 +block 2614 * ff20222a +block 2615 * 6c080b0e +block 2616 * 6c080b0e +block 2617 * 3733394a +block 2618 * 3733394a +block 2619 * ffb0b9c7 +block 2620 * ffb0b9c7 +block 2621 * ffb0b9c7 +block 2622 * ffb0b9c7 +block 2623 * ffb0b9c7 +block 2624 * fff07613 +block 2625 * 3733394a +block 2626 * 3733394a +block 2627 * 3733394a +block 2628 * 3733394a +block 2629 * 3733394a +block 2630 * 3733394a +block 2631 * 3733394a +block 2632 * 3733394a +block 2633 * 3733394a +block 2634 * 3733394a +block 2635 * ff7c007c +block 2636 * 3733394a +block 2637 * 3733394a +block 2638 * 3733394a +block 2639 * 3733394a +block 2640 * 3733394a +block 2641 * 3733394a +block 2642 * 3733394a +block 2643 * 3733394a +block 2644 * 3733394a +block 2645 * 3733394a +block 2646 * 3733394a +block 2647 * 3733394a +block 2648 * 3733394a +block 2649 * 3733394a +block 2650 * 3733394a +block 2651 * 3733394a +block 2652 * 3733394a +block 2653 * 3733394a +block 2654 * 3733394a +block 2655 * 3733394a +block 2753 * 655c5413 +block 2761 * ffadadad +block 2761 0 ffc3c3c3 +block 2761 1 ffb5b5b5 +block 2761 2 ffababab +block 2761 3 ffaeaa9f +block 2761 5 ffa7a6a4 +block 2761 6 ffa3a3a3 +block 2761 7 ffa3a3a3 +block 2761 9 ffb0b0b0 +block 2761 10 ffa4a4a3 +block 2761 11 ffa4a3a2 +block 2761 12 ffaeaeae +block 2761 13 ffacacac +block 2761 14 ffa7a7a7 +block 2761 15 ffacacac +block 2762 0 ff8d8c78 +block 2762 1 ff8c8974 +block 2762 2 ff8a8772 +block 2762 3 ff8a8872 +block 2762 4 ff87846f +block 2762 5 ff827f6a +block 2762 6 ff81775e +block 2762 7 ff6f6d58 +block 2762 8 ff565444 +block 2762 9 ff585746 +block 2762 10 ff868571 +block 2762 11 ff8c8b77 +block 2762 12 ff86826d +block 2762 13 ff8d8b79 +block 2762 14 ff969385 +block 2762 15 ff716b5b +block 2763 * ffa7a6a4 +block 2763 0 ffc3c3c3 +block 2763 1 ffb5b5b5 +block 2763 2 ffababab +block 2763 3 ffaeaa9f +block 2763 4 ffacacac +block 2763 8 ffadadad +block 2763 9 ffb0b0b0 +block 2763 10 ffa4a4a3 +block 2763 11 ffa4a3a2 +block 2763 12 ffaeaeae +block 2763 13 ffa9a9a9 +block 2763 14 ffa7a7a7 +block 2763 15 ffacacac +block 2764 0 ff8d8c78 +block 2764 1 ff8c8974 +block 2764 2 ff8a8772 +block 2764 3 ff8a8872 +block 2764 4 ff87846f +block 2764 5 ff827f6a +block 2764 6 ff81775e +block 2764 7 ff6f6d58 +block 2764 8 ff565444 +block 2764 9 ff585746 +block 2764 10 ff868571 +block 2764 11 ff8c8b77 +block 2764 12 ff86826d +block 2764 13 ff8d8b79 +block 2764 14 ff969385 +block 2764 15 ff716b5b +block 2766 * ffb4b4b4 +block 2766 0 ffc6c6c6 +block 2766 1 ffc6c6c6 +block 2766 2 ffcbcbcb +block 2766 3 ffc6c6c6 +block 2766 14 ffc6c6c6 +block 2767 * 3733394a +block 2768 * 3733394a +block 2769 * ffcfcecf +block 2770 * ffcfcecf +block 2771 * ffcfcecf +block 2772 * ffcfcecf +block 2775 * c7aabed9 +block 2777 * ffaf8f5b +block 2777 0 ff7c007c +block 2777 1 ff9e8150 +block 2777 2 ff9a7d4d +block 2777 3 ff9d8254 +block 2777 4 ff9e8253 +block 2777 5 ff9a7e51 +block 2777 6 ff9b8153 +block 2777 7 ff8f7750 +block 2777 10 ff8f7447 +block 2777 11 ffa38758 +block 2777 12 ff6b5736 +block 2777 13 ffa58756 +block 2777 14 ff897046 +block 2777 15 ff8a7147 +block 2778 * ff725636 +block 2778 0 ff7c007c +block 2778 1 ff674d2f +block 2778 2 ff644a2d +block 2778 3 ff664e31 +block 2778 4 ff674e31 +block 2778 5 ff644c2f +block 2778 6 ff654d31 +block 2778 7 ff5d482f +block 2778 10 ff5d4529 +block 2778 11 ff6a5134 +block 2778 12 ff45341f +block 2778 13 ff6c5132 +block 2778 14 ff594329 +block 2778 15 ff5a4429 +block 2779 * ffbca570 +block 2779 0 ff7c007c +block 2779 1 ffb59f6b +block 2779 2 ffb39d69 +block 2779 3 ffb49f6c +block 2779 4 ffb49f6c +block 2779 5 ffb29d6b +block 2779 6 ffb39e6c +block 2779 7 ffad996a +block 2779 10 ffae9866 +block 2779 11 ffb7a16e +block 2779 12 ff99865b +block 2779 13 ffb8a16d +block 2779 14 ffa38d5d +block 2779 15 ffa48e5d +block 2780 * ffdad29e +block 2781 * ff7c007c +block 2781 0 ff8a8374 +block 2781 1 ff8b8476 +block 2781 2 ff8b8476 +block 2781 3 ff8b8578 +block 2781 4 ff554e3e +block 2781 5 ff565040 +block 2781 6 ff565040 +block 2781 7 ff585142 +block 2781 8 ff8a8374 +block 2781 9 ff8b8476 +block 2781 10 ff2f2f2f +block 2782 * 24e4e4e4 +block 2783 * ff8f8f8f +block 2783 8 ff7d7d7d +block 2783 9 ff7d7d7d +block 2783 10 ff7d7d7d +block 2783 11 ff7d7d7d +block 2783 12 ff8e8e8e +block 2783 13 ff8e8e8e +block 2783 14 ff7d7d7d +block 2783 15 ff8d8d8d +block 2784 * ffded7aa +block 2784 8 ffd4cc9c +block 2784 9 ffd4cc9c +block 2784 10 ffd4cc9c +block 2784 11 ffd4cc9c +block 2784 12 ffddd6a7 +block 2784 13 ffddd6a7 +block 2784 14 ffd4cc9c +block 2784 15 ffdad2a0 +block 2785 * ff21102a +block 2785 8 ff1e0c27 +block 2785 9 ff1e0c27 +block 2785 10 ff1e0c27 +block 2785 11 ff1e0c27 +block 2785 14 ff1e0c27 +block 2785 15 ff210d26 +block 2787 * ff7a7a7a +block 2787 0 ff7e7e7e +block 2787 1 ff727272 +block 2787 2 ff7c7c7c +block 2787 3 ff757575 +block 2787 5 ff7c7c7c +block 2787 6 ff808080 +block 2787 7 ff7f7f7f +block 2787 8 ff7f7f7f +block 2787 9 ff726a63 +block 2787 10 ff8c8c8c +block 2787 11 ff777777 +block 2787 13 ff767676 +block 2787 14 ff9b9b9b +block 2787 15 ff797979 +block 2788 0 46daf0f4 +block 2788 1 49839093 +block 2788 2 a5740d0a +block 2788 3 78684c31 +block 2788 4 8b464749 +block 2788 5 6f827c67 +block 2788 6 3b818e92 +block 2788 7 db5b5d5f +block 2788 8 7f272727 +block 2788 9 6f75766d +block 2788 10 73525456 +block 2788 11 6f616565 +block 2788 12 188a979c +block 2788 13 bf5a5c5f +block 2788 14 6f6e6d6f +block 2788 15 ab505154 +block 2789 * ffdad29e +block 2789 0 ffddd59c +block 2789 1 ffddd59c +block 2789 2 ffddd59c +block 2789 4 ffd5ce9e +block 2789 5 ffd5ce9e +block 2789 6 ffd5ce9e +block 2789 7 ffd5ce9e +block 2789 12 ffd3cc9d +block 2789 13 ffcfc99c +block 2789 14 ffcdc79c +block 2789 15 ffd1ca9c +block 2790 * ff909090 +block 2790 0 ffdcdcdc +block 2790 1 ff919191 +block 2790 3 ff878888 +block 2790 4 ff888888 +block 2790 5 ff7f8080 +block 2790 6 ff7a7c7c +block 2790 7 ff757575 +block 2790 8 ff747474 +block 2790 11 ff898a8a +block 2790 12 ff332b3f +block 2790 13 ff2e2f2f +block 2790 14 ff616262 +block 2790 15 ff888989 +block 2792 * ff7c007c +block 2792 0 ff60ebe3 +block 2792 1 ff8699a1 +block 2792 2 ff899ca3 +block 2792 3 ff7d8b90 +block 2792 4 ff19102a +block 2792 5 ff191b1c +block 2792 6 ff788d96 +block 2792 7 ff776e7a +block 2792 8 ff8097a3 +block 2792 9 ff91aab7 +block 2792 10 ff7f97a4 +block 2792 11 ff8092a0 +block 2792 12 ff9a9a83 +block 2793 * ff836f3b +block 2793 0 ffa77746 +block 2793 1 ff8f7c40 +block 2793 3 ff94885e +block 2793 4 ffe5dcc1 +block 2793 5 ff97834b +block 2793 6 ff87723a +block 2793 7 ff836d33 +block 2793 8 ff988248 +block 2793 9 ff7a6639 +block 2793 10 ff64552d +block 2793 11 fe9d8d5d +block 2793 12 ffa3956c +block 2793 14 ff635329 +block 2793 15 ff63542d +block 2794 * ff7c007c +block 2794 0 ff1e438c +block 2794 1 ff0e1880 +block 2794 2 ff01258a +block 2794 3 ff001b7d +block 2794 4 ff2d5188 +block 2794 5 ff003392 +block 2794 6 ff1537a9 +block 2794 7 ff003ea4 +block 2794 8 ff464f6c +block 2795 * ff7c007c +block 2795 0 ff47d761 +block 2795 1 ff447a09 +block 2795 2 ff396b05 +block 2795 3 ff417d01 +block 2795 4 ff295301 +block 2795 5 ff5e6b1e +block 2795 6 ff436c19 +block 2795 7 ff6a9f31 +block 2795 8 ff639929 +block 2795 9 ff69a12d +block 2795 10 ff6da233 +block 2795 11 ff5b8a28 +block 2796 0 ff2c161a +block 2796 1 ff0f1b56 +block 2796 2 ff633129 +block 2796 3 ff76423c +block 2796 4 ff624736 +block 2796 5 ff5b4035 +block 2796 6 ff462b4d +block 2796 7 ff623c0b +block 2796 8 ff472111 +block 2796 9 ff7d5a46 +block 2796 10 ff8c564d +block 2796 11 ff994e44 +block 2796 12 ff8a3d37 +block 2796 13 ff683938 +block 2796 14 ff502420 +block 2796 15 ff482522 +block 2797 0 ff612626 +block 2797 1 ff733a30 +block 2797 2 ff662b22 +block 2797 3 ff5b312e +block 2797 4 ff061456 +block 2797 5 ff030d53 +block 2797 6 ff6c3e3c +block 2797 7 ff6d3534 +block 2797 8 ff804744 +block 2797 9 ff654938 +block 2797 10 ff985c56 +block 2797 11 ffa75149 +block 2797 12 ff75342f +block 2797 13 ff48201e +block 2797 14 ff67061b +block 2797 15 ff7c007c +block 2798 0 ff6d765e +block 2798 1 ff5e6b50 +block 2798 2 ff667258 +block 2798 3 ff626e57 +block 2798 4 ff647059 +block 2798 5 ff65715b +block 2798 6 ff707866 +block 2798 7 ff767e6b +block 2798 8 ff68745f +block 2798 9 ff606949 +block 2798 10 ff677857 +block 2798 11 ff606e52 +block 2798 12 ff64705a +block 2798 13 ff66715c +block 2798 14 ff78856d +block 2798 15 ff607150 +block 2799 * ff757575 +block 2799 0 ff7a797a +block 2799 1 ff737969 +block 2799 2 ff767576 +block 2799 3 ff777677 +block 2799 4 ff6e6e6e +block 2799 7 ff747474 +block 2799 8 ff747474 +block 2799 9 ff7f7f7f +block 2799 10 ff6c6c6c +block 2799 11 ff6a6a6a +block 2799 12 ff7a7a7a +block 2799 13 ff7b7b7b +block 2799 14 ff818181 +block 2799 15 ff767676 +block 2801 * ff210d26 +block 2801 0 ff1a1725 +block 2801 1 ff1e0c27 +block 2801 2 ff220e2c +block 2801 3 ff1e0426 +block 2801 4 ff1c0924 +block 2801 5 ff180322 +block 2801 6 ff1f0924 +block 2801 7 ff16031b +block 2801 8 ff1e0525 +block 2801 9 ff16031c +block 2801 10 ff15021b +block 2801 11 ff1a0520 +block 2801 12 ff15021a +block 2801 14 ff26162c +block 2802 * ff7c007c +block 2802 0 736f7166 +block 2802 1 0b5b5958 +block 2802 2 0b73716e +block 2802 3 1f83817f +block 2802 4 05a3a4a4 +block 2802 5 bf5a5c5f +block 2802 6 1f626164 +block 2802 7 1f595a5c +block 2802 8 0b5b5958 +block 2802 9 0b646463 +block 2803 * ff7c007c +block 2803 0 1fd3eff4 +block 2803 1 1f818e92 +block 2803 2 1f818f92 +block 2803 3 7f272727 +block 2803 12 1f730d0a +block 2803 13 1fefbe43 +block 2803 14 1f523419 +block 2803 15 1f523419 +block 2804 * ffad9857 +block 2804 0 fff2c83e +block 2804 1 ffac9a60 +block 2804 4 ffac9a60 +block 2804 5 ffa0894c +block 2804 6 ffa18948 +block 2804 9 ffb49757 +block 2804 10 ffae9255 +block 2804 11 ffab985e +block 2804 12 ff37272b +block 2804 13 ff322c1b +block 2804 14 ffac9a60 +block 2804 15 ff7c007c +block 2805 * ffa7a6a4 +block 2805 0 ffc3c3c3 +block 2805 1 ffb5b5b5 +block 2805 2 ffababab +block 2805 3 ffaeaa9f +block 2805 4 ffacacac +block 2805 8 ffadadad +block 2805 9 ffb0b0b0 +block 2805 10 ffa4a4a3 +block 2805 11 ffa4a3a2 +block 2805 12 ffaeaeae +block 2805 13 ffa9a9a9 +block 2805 14 ffa7a7a7 +block 2805 15 ffacacac +block 2806 * ffb4b4b4 +block 2806 0 ffc6c6c6 +block 2806 1 ffc6c6c6 +block 2806 2 ffcbcbcb +block 2806 3 ffc6c6c6 +block 2806 14 ffc6c6c6 +block 2807 0 ff8d8c78 +block 2807 1 ff8c8974 +block 2807 2 ff8a8772 +block 2807 3 ff8a8872 +block 2807 4 ff87846f +block 2807 5 ff827f6a +block 2807 6 ff81775e +block 2807 7 ff6f6d58 +block 2807 8 ff565444 +block 2807 9 ff585746 +block 2807 10 ff868571 +block 2807 11 ff8c8b77 +block 2807 12 ff86826d +block 2807 13 ff8d8b79 +block 2807 14 ff969385 +block 2807 15 ff716b5b +block 2808 * ffc3c3c3 +block 2808 8 ffb5b5b5 +block 2808 9 ffb5b5b5 +block 2808 10 ffb5b5b5 +block 2808 11 ffb5b5b5 +block 2808 12 ffb5b5b5 +block 2808 13 ffb5b5b5 +block 2808 14 ffb5b5b5 +block 2808 15 ffb5b5b5 +block 2809 * ffaeaa9f +block 2809 0 ffababab +block 2809 1 ffababab +block 2809 2 ffababab +block 2809 3 ffababab +block 2809 4 ffababab +block 2809 5 ffababab +block 2809 6 ffababab +block 2809 7 ffababab +block 2810 * ffa7a6a4 +block 2810 0 ffacacac +block 2810 1 ffacacac +block 2810 2 ffacacac +block 2810 3 ffacacac +block 2810 4 ffacacac +block 2810 5 ffacacac +block 2810 6 ffacacac +block 2810 7 ffacacac +block 2811 * ffa7a6a4 +block 2812 * ffadadad +block 2812 8 ffb0b0b0 +block 2812 9 ffb0b0b0 +block 2812 10 ffb0b0b0 +block 2812 11 ffb0b0b0 +block 2812 12 ffb0b0b0 +block 2812 13 ffb0b0b0 +block 2812 14 ffb0b0b0 +block 2812 15 ffb0b0b0 +block 2813 * ffa4a3a2 +block 2813 0 ffa4a4a3 +block 2813 1 ffa4a4a3 +block 2813 2 ffa4a4a3 +block 2813 3 ffa4a4a3 +block 2813 4 ffa4a4a3 +block 2813 5 ffa4a4a3 +block 2813 6 ffa4a4a3 +block 2813 7 ffa4a4a3 +block 2814 * ffa9a9a9 +block 2814 0 ffaeaeae +block 2814 1 ffaeaeae +block 2814 2 ffaeaeae +block 2814 3 ffaeaeae +block 2814 4 ffaeaeae +block 2814 5 ffaeaeae +block 2814 6 ffaeaeae +block 2814 7 ffaeaeae +block 2815 * ffacacac +block 2815 0 ffa7a7a7 +block 2815 1 ffa7a7a7 +block 2815 2 ffa7a7a7 +block 2815 3 ffa7a7a7 +block 2815 4 ffa7a7a7 +block 2815 5 ffa7a7a7 +block 2815 6 ffa7a7a7 +block 2815 7 ffa7a7a7 +block 2816 * ff8d8c78 +block 2816 8 ff8c8974 +block 2816 9 ff8c8974 +block 2816 10 ff8c8974 +block 2816 11 ff8c8974 +block 2816 12 ff8c8974 +block 2816 13 ff8c8974 +block 2816 14 ff8c8974 +block 2816 15 ff8c8974 +block 2817 * ff8a8872 +block 2817 0 ff8a8772 +block 2817 1 ff8a8772 +block 2817 2 ff8a8772 +block 2817 3 ff8a8772 +block 2817 4 ff8a8772 +block 2817 5 ff8a8772 +block 2817 6 ff8a8772 +block 2817 7 ff8a8772 +block 2818 * ff827f6a +block 2818 0 ff87846f +block 2818 1 ff87846f +block 2818 2 ff87846f +block 2818 3 ff87846f +block 2818 4 ff87846f +block 2818 5 ff87846f +block 2818 6 ff87846f +block 2818 7 ff87846f +block 2819 * ff6f6d58 +block 2819 0 ff81775e +block 2819 1 ff81775e +block 2819 2 ff81775e +block 2819 3 ff81775e +block 2819 4 ff81775e +block 2819 5 ff81775e +block 2819 6 ff81775e +block 2819 7 ff81775e +block 2820 * ff585746 +block 2820 0 ff565444 +block 2820 1 ff565444 +block 2820 2 ff565444 +block 2820 3 ff565444 +block 2820 4 ff565444 +block 2820 5 ff565444 +block 2820 6 ff565444 +block 2820 7 ff565444 +block 2821 * ff868571 +block 2821 8 ff8c8b77 +block 2821 9 ff8c8b77 +block 2821 10 ff8c8b77 +block 2821 11 ff8c8b77 +block 2821 12 ff8c8b77 +block 2821 13 ff8c8b77 +block 2821 14 ff8c8b77 +block 2821 15 ff8c8b77 +block 2822 * ff86826d +block 2822 8 ff8d8b79 +block 2822 9 ff8d8b79 +block 2822 10 ff8d8b79 +block 2822 11 ff8d8b79 +block 2822 12 ff8d8b79 +block 2822 13 ff8d8b79 +block 2822 14 ff8d8b79 +block 2822 15 ff8d8b79 +block 2823 * ff716b5b +block 2823 0 ff969385 +block 2823 1 ff969385 +block 2823 2 ff969385 +block 2823 3 ff969385 +block 2823 4 ff969385 +block 2823 5 ff969385 +block 2823 6 ff969385 +block 2823 7 ff969385 +block 2824 * be91b7fd +block 2824 8 c4b1c8e1 +block 2824 9 c4b1c8e1 +block 2824 10 c4b1c8e1 +block 2824 11 c4b1c8e1 +block 2824 12 c4b1c8e1 +block 2824 13 c4b1c8e1 +block 2824 14 c4b1c8e1 +block 2824 15 c4b1c8e1 +block 2825 * c7a7bbd6 +block 2825 8 c7bdc7dc +block 2825 9 c7bdc7dc +block 2825 10 c7bdc7dc +block 2825 11 c7bdc7dc +block 2825 12 c7bdc7dc +block 2825 13 c7bdc7dc +block 2825 14 c7bdc7dc +block 2825 15 c7bdc7dc +block 2826 * c7a8bcd7 +block 2826 0 c7aabed8 +block 2826 1 c7aabed8 +block 2826 2 c7aabed8 +block 2826 3 c7aabed8 +block 2826 4 c7aabed8 +block 2826 5 c7aabed8 +block 2826 6 c7aabed8 +block 2826 7 c7aabed8 +block 2827 * c7aabed9 +block 2827 8 c7aabdd8 +block 2827 9 c7aabdd8 +block 2827 10 c7aabdd8 +block 2827 11 c7aabdd8 +block 2827 12 c7aabdd8 +block 2827 13 c7aabdd8 +block 2827 14 c7aabdd8 +block 2827 15 c7aabdd8 +block 2828 * c7afc1d9 +block 2828 0 c7a6bad6 +block 2828 1 c7a6bad6 +block 2828 2 c7a6bad6 +block 2828 3 c7a6bad6 +block 2828 4 c7a6bad6 +block 2828 5 c7a6bad6 +block 2828 6 c7a6bad6 +block 2828 7 c7a6bad6 +block 2829 * c78a9db7 +block 2829 8 c7aabed9 +block 2829 9 c7aabed9 +block 2829 10 c7aabed9 +block 2829 11 c7aabed9 +block 2829 12 c7aabed9 +block 2829 13 c7aabed9 +block 2829 14 c7aabed9 +block 2829 15 c7aabed9 +block 2830 * c7879ab3 +block 2830 0 c7aabed9 +block 2830 1 c7aabed9 +block 2830 2 c7aabed9 +block 2830 3 c7aabed9 +block 2830 4 c7aabed9 +block 2830 5 c7aabed9 +block 2830 6 c7aabed9 +block 2830 7 c7aabed9 +block 2831 * c7b1c2d9 +block 2831 8 c795a8c1 +block 2831 9 c795a8c1 +block 2831 10 c795a8c1 +block 2831 11 c795a8c1 +block 2831 12 c795a8c1 +block 2831 13 c795a8c1 +block 2831 14 c795a8c1 +block 2831 15 c795a8c1 +block 2832 0 ffaf1805 +block 2832 1 ffad0000 +block 2832 2 ffb40900 +block 2832 3 ffae0a00 +block 2832 4 ffb20a00 +block 2832 5 ffa10300 +block 2832 6 ffa70200 +block 2832 7 ff890100 +block 2832 8 ffb90001 +block 2832 9 ffaf0300 +block 2832 10 ff840100 +block 2832 11 ff9d0100 +block 2832 12 ffa30801 +block 2832 13 ffb50300 +block 2832 14 ff7f0501 +block 2832 15 ff8e0601 +block 2833 * ff999999 +block 2833 0 ff949494 +block 2833 2 ff8b8b8b +block 2833 4 ff929292 +block 2833 5 ff929292 +block 2833 6 ff8a8a8a +block 2833 7 ff939393 +block 2833 8 ff919191 +block 2833 9 ff989898 +block 2833 10 ff898989 +block 2833 11 ff8b8b8b +block 2833 12 ffa6a6a6 +block 2833 13 ff8f8f8f +block 2833 14 ff7c007c +block 2833 15 ff7c007c +block 2834 * ff7c007c +block 2834 0 d384766f +block 2834 1 d32a1b13 +block 2834 2 b4857d78 +block 2834 3 9d706863 +block 2834 4 e7848281 +block 2834 5 8b6f6f6f +block 2834 6 b6848484 +block 2835 * ffd5ac20 +block 2835 0 ffc2b6b7 +block 2835 1 ffc2b6b7 +block 2835 2 ffc2b6b7 +block 2835 3 ffbcafb5 +block 2835 5 ffc2b6b7 +block 2835 6 ffd0c2b3 +block 2835 7 ffd0c2b3 +block 2835 12 ffc0b3b6 +block 2835 13 ffc0b3b6 +block 2835 14 ffc8babb +block 2835 15 ffbcafb5 +block 2836 0 ffa0a0a0 +block 2836 1 ffd7a458 +block 2836 2 ff9f749d +block 2836 3 ff6482bf +block 2836 4 ffc3961c +block 2836 5 ff51764c +block 2836 6 ffce93ab +block 2836 7 ff515151 +block 2836 8 ff967957 +block 2836 9 ffbc9533 +block 2836 10 ff8c0c3a +block 2836 11 ff353946 +block 2836 12 ff4d2800 +block 2836 13 ff033a1c +block 2836 14 ffd56031 +block 2836 15 ff282828 +block 2837 * ffa2824f +block 2838 0 ff515151 +block 2838 1 ff474747 +block 2838 2 ff392c43 +block 2838 3 ff523f59 +block 2838 4 ff372e23 +block 2838 5 ff787878 +block 2838 6 ff414141 +block 2838 7 ff7a7b7a +block 2838 8 ff0c1a27 +block 2838 9 ff1b2531 +block 2838 10 ff464646 +block 2838 11 ff1b2834 +block 2838 12 ff161616 +block 2838 13 ff141414 +block 2838 14 ff262626 +block 2838 15 ff828382 +block 2839 * ff866043 +block 2839 1 ff886143 +block 2839 2 ff775439 +block 2839 3 ff8c6749 +block 2839 4 ff845e41 +block 2839 5 ff6e4e36 +block 2839 6 ff6e4e36 +block 2839 7 ff815c3e +block 2839 8 ff8e6543 +block 2839 9 ff8e6543 +block 2839 12 ff835d3f +block 2839 13 ff7f5a3d +block 2839 14 ff7c007c +block 2839 15 ff7c007c +block 2840 * ff657091 +block 2840 0 ff636e8f +block 2840 1 ff495270 +block 2840 4 ff646e8f +block 2840 5 ff657090 +block 2840 6 ff646f8f +block 2840 7 ff646e8f +block 2840 8 ff657090 +block 2840 12 ff657090 +block 2840 13 ff606b8c +block 2840 14 ff848fae +block 2840 15 ff808bac +block 2841 * ff577d78 +block 2841 0 ff547b76 +block 2841 1 ff3f645d +block 2841 3 ff577e78 +block 2841 4 ff557b76 +block 2841 6 ff567c77 +block 2841 7 ff557c77 +block 2841 8 ff567d78 +block 2841 12 ff567d78 +block 2841 13 ff527873 +block 2841 14 ff709690 +block 2841 15 ff6c938e +block 2842 * ff7c007c +block 2842 0 a6fcfcfc +block 2843 0 ff4f3f37 +block 2843 1 ff4b3d33 +block 2843 2 ff4b444b +block 2843 3 ff545b69 +block 2843 4 ff303030 +block 2843 5 ff2d2523 +block 2843 6 ff878337 +block 2843 7 ffd69369 +block 2843 8 ff323631 +block 2843 9 ff483d37 +block 2843 10 ff422717 +block 2843 11 ff2a2226 +block 2843 12 ff96a6a4 +block 2843 13 ff555555 +block 2843 14 ff251a11 +block 2843 15 ff808687 +block 2844 0 ffa0a0a0 +block 2844 1 ffd7a458 +block 2844 2 ff9f749d +block 2844 3 ff6482bf +block 2844 4 ffc3961c +block 2844 5 ff51764c +block 2844 6 ffce93ab +block 2844 7 ff515151 +block 2844 8 ff967957 +block 2844 9 ffbc9533 +block 2844 10 ff8c0c3a +block 2844 11 ff353946 +block 2844 12 ff4d2800 +block 2844 13 ff033a1c +block 2844 14 ffd56031 +block 2844 15 ff282828 +block 2845 * 1b292a2b +block 2845 1 3b1d1d1e +block 2904 0 ff29203f +block 2904 1 ff4f4ca3 +block 2904 2 ff975f27 +block 2904 3 ff9ee0ff +block 2904 4 fff7983f +block 2904 5 fff9aee3 +block 2904 6 ff2c092b +block 2904 7 ffd57db4 +block 2904 8 ff104317 +block 2904 9 ffe05d25 +block 2904 10 ffd7cabd +block 2904 11 fff4dc6e +block 2904 12 ff3bb2a5 +block 2904 13 ff594141 +block 2904 14 ffa6949a +block 2904 15 ffb3c880 +block 2905 * 3733394a +block 2906 * 3733394a +block 2907 * 3733394a +block 2908 * 3733394a +block 2909 0 ff29203f +block 2909 1 ff4f4ca3 +block 2909 2 ff975f27 +block 2909 3 ff9ee0ff +block 2909 4 fff7983f +block 2909 5 fff9aee3 +block 2909 6 ff2c092b +block 2909 7 ffd57db4 +block 2909 8 ff104317 +block 2909 9 ffe05d25 +block 2909 10 ffd7cabd +block 2909 11 fff4dc6e +block 2909 12 ff3bb2a5 +block 2909 13 ff594141 +block 2909 14 ffa6949a +block 2909 15 ffb3c880 +block 2910 * 3733394a +block 2911 * 3733394a +block 2912 * 3733394a +block 2913 * 3733394a +block 2914 * 3733394a +block 2915 * 3733394a +block 2916 * 3733394a +block 2917 * 3733394a +block 2918 * 3733394a +block 2919 * 3733394a +block 2920 * 3733394a +block 2921 * 3733394a +block 2922 * 3733394a +block 2923 * 3733394a +block 2924 * 3733394a +block 2926 * 3733394a +block 2927 * 3733394a +block 2928 * 3733394a +block 2929 * 3733394a +block 2930 * 3733394a +block 2931 * 3733394a +block 2932 * 3733394a +block 2933 * 3733394a +block 2934 * 3733394a +block 2935 * 3733394a +block 2936 * 3733394a +block 2937 * 3733394a +block 2938 * 3733394a +block 2939 * 3733394a +block 2940 * 3733394a +block 2941 * 3733394a +block 2942 * 3733394a +block 2943 * ff7c007c +block 2945 * 3733394a +block 2948 * 3733394a +block 2949 * 3733394a +block 2950 * 3733394a +block 2951 * 3733394a +block 2952 * 3733394a +block 2953 * 3733394a +block 2954 * 3733394a +block 2955 * 3733394a +block 2956 * 3733394a +block 2957 * 3733394a +block 2958 * 3733394a +block 2959 * 3733394a +block 2960 * 3733394a +block 2961 * 3733394a +block 2962 * 3733394a +block 2963 * 3733394a +block 2964 * 3733394a +block 2965 * 3733394a +block 2967 * 3733394a +block 2968 * 3733394a +block 2969 * 3733394a +block 2970 * 3733394a +block 2971 * 3733394a +block 2972 * 3733394a +block 2974 * 3733394a +block 2975 * 3733394a +block 2976 * 3733394a +block 2977 * 3733394a +block 2978 * 3733394a +block 2979 * 3733394a +block 2980 * 3733394a +block 2981 * 3733394a +block 2982 * 3733394a +block 2983 * 3733394a +block 2984 * 3733394a +block 2985 * 3733394a +block 2986 * 3733394a +block 2987 * ff7c007c +block 2987 0 ff23262f +block 2987 1 ff32353f +block 2987 2 ff8a8e96 +block 2988 * ff7c007c +block 2988 0 ff656871 +block 2988 1 ff6d6765 +block 2988 2 ff676678 +block 2988 3 ff576e78 +block 2988 4 ff6d6959 +block 2988 5 ff617055 +block 2988 11 ff616978 +block 2988 13 ff58706c +block 2988 14 ff6d656e +block 2989 * ff8b5e4f +block 2990 * ff8b5e4f +block 2991 * ff8b5e4f +block 2992 * ff8b5e4f +block 2996 * 3733394a +block 2997 * 3733394a +block 2998 * 3733394a +block 2999 * 3733394a +block 3000 * 3733394a +block 3001 * 3733394a +block 3002 * 3733394a +block 3003 * 3733394a +block 3004 * 3733394a +block 3005 * 3733394a +block 3006 * 3733394a +block 3007 * 3733394a +block 3008 * 3733394a +block 3009 * 3733394a +block 3010 * ffc1ae78 +block 3011 * ff6c5130 +block 3013 * ff3d2712 +block 3014 * ffa95b33 +block 3015 * ff9f7351 +block 3016 * ff2b6863 +block 3017 * ff653046 +block 3018 * ffc1ae78 +block 3019 * ffc1ae78 +block 3021 * ff6c5130 +block 3022 * ff6c5130 +block 3024 * ff3d2712 +block 3025 * ff3d2712 +block 3027 * ffa95b33 +block 3028 * ffa95b33 +block 3030 * ff9f7351 +block 3031 * ff9f7351 +block 3033 * ff2b6863 +block 3034 * ff2b6863 +block 3036 * ff653046 +block 3037 * ff653046 +block 3039 * ffc1ae78 +block 3040 * ff6c5130 +block 3041 * ff3d2712 +block 3042 * ffa95b33 +block 3043 * ff9f7351 +block 3044 * ff2b6863 +block 3045 * ff653046 +block 3046 * ffc1ad50 +block 3047 * ffc1ad50 +block 3048 * ffc1ad50 +block 3049 * ffc1ad50 +block 3050 * ffc1ad50 +block 3051 * ffc7b254 +block 3053 * ffc1ad50 +block 3054 * ffc1ad50 +block 3055 * d3c6b355 +block 3056 * ffc1ad50 +block 3060 * ffe2b2ac +block 3061 * ffe2b2ac +block 3062 * ffe2b2ac +block 3063 * ffe2b2ac +block 3064 * ffe2b2ac +block 3065 * fde1b0a9 +block 3067 * ffe2b2ac +block 3068 * ffe2b2ac +block 3069 * dbe2b2ac +block 3070 * ffe2b2ac +block 3074 * ff753630 +block 3075 * ff753630 +block 3076 * ff753630 +block 3077 * ff753630 +block 3078 * ff753630 +block 3079 * ff702f2e +block 3081 * ff753630 +block 3082 * ff753630 +block 3083 * df6e2e2a +block 3084 * ff753630 +block 3088 * ff7f9039 +block 3090 * d7e5819a +block 3091 * 79a4758f +block 3092 * d3245a0c +block 3093 * 2060ae53 +block 3094 * b22a6a0e +block 3095 * 6d3d5a1e +block 3096 * 932a690d +block 3097 * 6e767517 +block 3098 * ff7f9039 +block 3099 * ffd79194 +block 3099 0 ffdda49d +block 3099 1 ffdda49d +block 3099 2 ffdda49d +block 3099 3 ffdda49d +block 3151 * ff77362f +block 3151 0 ff6d2b2b +block 3151 1 ff6d2b2b +block 3151 2 ff6d2b2b +block 3151 3 ff6d2b2b +block 3152 * 3733394a +block 3153 * 3733394a +block 3154 * 3733394a +block 3155 * 3733394a +block 3156 * 3733394a +block 3157 * 3733394a +block 3158 * 3733394a +block 3159 * 3733394a +block 3160 * 3733394a +block 3161 * 3733394a +block 3162 * 3733394a +block 3163 * 3733394a +block 3164 * 3733394a +block 3165 * 3733394a +block 3166 * 3733394a +block 3167 * 3733394a +block 3168 * 3733394a +block 3169 * 3733394a +block 3170 * 3733394a +block 3171 * ff80848f +block 3172 * ff80848f +block 3173 * ff80848f +block 3174 * ff80848f +block 3175 * ff8d9099 +block 3176 * ff8d9099 +block 3177 * ff8d9099 +block 3178 * ff7c007c +block 3178 0 ff878b93 +block 3178 1 ff8f8987 +block 3178 2 ff8a889b +block 3178 3 ff7a909b +block 3178 4 ff8f8b7b +block 3178 5 ff839277 +block 3178 11 ff848b9b +block 3178 13 ff7b928e +block 3178 14 ff8f8890 +block 3179 * ff686c77 +block 3179 0 ff737987 +block 3179 1 ff737987 +block 3179 2 ff737987 +block 3179 3 ff737987 +block 3179 12 ff737987 +block 3179 13 ff737987 +block 3179 14 ff737987 +block 3179 15 ff737987 +block 3181 * 6c8ff7fd +block 3182 * ff4a4f5d +block 3183 * 3269efc0 +block 3184 * 2f5ae8b6 +block 3185 * 3733394a +block 3186 * 3733394a +block 3187 * 3733394a +block 3188 * 3733394a +block 3189 * 3733394a +block 3190 * 3733394a +block 3191 * 3733394a +block 3192 * 3733394a +block 3193 * 3733394a +block 3194 * 3733394a +block 3196 * 3733394a +block 3197 * 3733394a +block 3198 * 3733394a +block 3199 * 3733394a +block 3200 * 3733394a +block 3201 * 3733394a +block 3202 * 3733394a +block 3203 * 3733394a +block 3204 * 3733394a +block 3205 * 3733394a +block 3206 * 3733394a +block 3207 * 3733394a +block 3208 * 3733394a +block 3209 * 3733394a +block 3210 * 3733394a +block 3211 * ffe9ecec +block 3212 * 3733394a +block 3213 * 3733394a +block 3214 * 3733394a +block 3215 * 3733394a +block 3216 * 3733394a +block 3217 * 3733394a +block 3218 * ffcbdffe +block 3219 * ff433b3b +block 3219 4 ff665f5d +block 3219 5 ff665f5d +block 3219 6 ff665f5d +block 3219 7 ff665f5d +block 3219 8 ff665f5d +block 3219 9 ff665f5d +block 3219 10 ff665f5d +block 3219 11 ff665f5d +block 3220 * ff141519 +block 3221 * ff192531 +block 3222 0 ff212d39 +block 3222 1 ff232f3b +block 3222 2 ff14202c +block 3222 3 ff202c38 +block 3222 4 ff131f2b +block 3222 5 ff212d39 +block 3222 6 ff202c38 +block 3222 7 ff192531 +block 3222 8 ff15212d +block 3222 9 ff2a3642 +block 3223 * ff202c38 +block 3223 0 ff232f3b +block 3223 1 ff232f3b +block 3223 2 ff232f3b +block 3223 3 ff232f3b +block 3223 12 ff232f3b +block 3223 13 ff232f3b +block 3223 14 ff232f3b +block 3223 15 ff232f3b +block 3224 * ff111d29 +block 3224 0 ff121e2a +block 3224 1 ff121e2a +block 3224 2 ff121e2a +block 3224 3 ff121e2a +block 3224 4 ff15212d +block 3224 5 ff15212d +block 3224 6 ff15212d +block 3224 7 ff15212d +block 3224 8 ff14202c +block 3224 9 ff14202c +block 3224 10 ff14202c +block 3224 11 ff14202c +block 3225 * ff131f2b +block 3225 0 ff121e2a +block 3225 1 ff121e2a +block 3225 2 ff121e2a +block 3225 3 ff121e2a +block 3225 8 ff25313d +block 3225 9 ff25313d +block 3225 10 ff25313d +block 3225 11 ff25313d +block 3226 * ff667780 +block 3226 0 ff65757d +block 3226 1 ff65757d +block 3226 2 ff65757d +block 3226 3 ff65757d +block 3226 8 ff66777f +block 3226 9 ff66777f +block 3226 10 ff66777f +block 3226 11 ff66777f +block 3226 12 ff63747d +block 3226 13 ff63747d +block 3226 14 ff63747d +block 3226 15 ff63747d +block 3227 * ff3f4d57 +block 3227 0 ff63747d +block 3227 1 ff63747d +block 3227 2 ff63747d +block 3227 3 ff63747d +block 3227 4 ff66767f +block 3227 5 ff66767f +block 3227 6 ff66767f +block 3227 7 ff66767f +block 3228 * ff111d29 +block 3228 0 ff423c3e +block 3228 1 ff423c3e +block 3228 2 ff423c3e +block 3228 3 ff423c3e +block 3228 12 ff423c3e +block 3228 13 ff423c3e +block 3228 14 ff423c3e +block 3228 15 ff423c3e +block 3229 * ff9ba5b7 +block 3230 * ff9ba5b7 +block 3231 * ff9ba5b7 +block 3232 * ff9ba5b7 +block 3233 * ff9ba5b7 +block 3234 * ff898fa1 +block 3235 * ff2d2b32 +block 3236 * ff2d2b32 +block 3237 * ff2d2b32 +block 3238 * ff91c0ce +block 3239 * ff91c0ce +block 3240 * ff91c0ce +block 3241 * ffcbdffe +block 3242 * ffcbdffe +block 3243 * ffcbdffe +block 3244 * ff111d29 +block 3245 * ff111d29 +block 3246 * ff111d29 +block 3247 * ff595c6f +block 3248 * ff98a1b3 +block 3249 * ff666a7c +block 3250 * ff545364 +block 3251 * 3dccb4ef +block 3252 * 4773a2b3 +block 3253 * 35503e67 +block 3254 * cb1a2126 +block 3255 * cb1a2126 +block 3256 * cb1a2126 +block 3257 * ff221c1c +block 3258 * ff606b6d +block 3259 * ff33394a +block 3260 * 3733394a +block 3261 * 58756f78 +block 3262 * 58756861 +block 3263 * 6e8f8093 +block 3264 * 6e848396 +block 3265 * ff93b1ea +block 3266 * bd93b1ea +block 3267 * ff93b1e9 +block 3268 * ee97b6e7 +block 3269 * 2d8ca0a3 +block 3270 * 2d7c888d +block 3271 * 3733394a +block 3272 * ff33394a +block 3273 * 3733394a +block 3274 * 3733394a +block 3275 * 3733394a +block 3276 * 3733394a +block 3277 * 3733394a +block 3278 * ff33394a +block 3279 * 3733394a +block 3280 * 3733394a +block 3281 * 3733394a +block 3282 * 3733394a +block 3283 * 3733394a +block 3284 * 3733394a +block 3285 * 3733394a +block 3286 * 3733394a +block 3287 * 3733394a +block 3288 * 3733394a +block 3289 * 3733394a +block 3290 * 3733394a +block 3291 * 3733394a +block 3292 * 3733394a +block 3293 * 3733394a +block 3294 * 3733394a +block 3295 * 3733394a +block 3296 * 3733394a +block 3297 * 3733394a +block 3298 * 3733394a +block 3299 * 3733394a +block 3300 * 3733394a +block 3301 * 3733394a +block 3302 * 3733394a +block 3303 * 3733394a +block 3304 * 3733394a +block 3305 * 3733394a +block 3306 * 3733394a +block 3307 * 3733394a +block 3308 * 3733394a +block 3309 * 3733394a +block 3310 * ff7c007c +block 3311 * ff122300 +block 3311 1 ff001435 +block 3311 2 ff410000 +block 3311 3 ff2b252d +block 3311 4 ff34303a +block 3311 5 ff3d3943 +block 3311 6 ff312b34 +block 3311 7 ff333038 +block 3311 8 ffd0c5b8 +block 3311 9 ffc5b9ac +block 3311 10 ffc6b9ad +block 3311 11 ffc8bbaf +block 3311 12 ffc5b7aa +block 3312 * ff806f63 +block 3312 1 ff676b4f +block 3312 2 ff626858 +block 3312 3 ff595f55 +block 3312 4 ff786a5f +block 3312 5 ff7a7471 +block 3313 * ff7f6440 +block 3314 * ff95a24f +block 3314 1 ff4c5f2f +block 3314 2 ff5e672a +block 3314 3 ff596616 +block 3314 4 ff344429 +block 3315 * 3733394a +block 3316 * 3733394a +block 3317 * 3733394a +block 3318 * 3733394a +block 3319 * 3733394a +block 3320 * 3733394a +block 3321 * 99898484 +block 3323 * 3733394a +block 3324 * ff41413e +block 3325 * 3733394a +block 3326 * ff363833 +block 3327 * ff363833 +block 3328 * 28a3a3a3 +block 3329 * 28a3a3a3 +block 3330 * 3733394a +block 3331 * 3733394a +block 3332 * 3733394a +block 3333 * ff49587c +block 3334 * ffa18d83 +block 3335 * 3733394a +block 3336 * 3733394a +block 3337 * 3733394a +block 3338 * 3733394a +block 3340 * 3733394a +block 3341 * 3733394a +block 3342 * ff85654e +block 3342 1 ff86664f +block 3343 * ff83482a +block 3344 * ff403751 +block 3345 * ffddd2a6 +block 3345 1 ffd4c493 +block 3345 2 ffdacd9f +block 3345 3 ffdacea0 +block 3345 4 ffded5a9 +block 3345 5 ffdacfa1 +block 3346 * ff787b7a +block 3346 1 ff7a7d7b +block 3346 2 ff6d6d6d +block 3347 * ff9f9f9a +block 3347 0 ff675d50 +block 3347 1 ff696867 +block 3347 2 ff767143 +block 3347 3 ff93938e +block 3347 4 ff5f5e5d +block 3347 5 ffa4a49e +block 3347 10 ff9b9b95 +block 3347 11 ff9b9b95 +block 3347 12 ff9b9b95 +block 3347 13 ff9b9b96 +block 3347 14 ff2e2e2e +block 3348 * c3ffc128 +block 3349 0 ff4d595c +block 3349 1 ff8990a2 +block 3349 2 ff8da0b4 +block 3349 3 ff95a1b9 +block 3349 4 ff616476 +block 3349 5 ff747787 +block 3349 6 ff577a77 +block 3349 7 ff5a6982 +block 3350 * 292a5eff +block 3351 * ff8c8c8c +block 3351 1 ff393939 +block 3351 2 ff424342 +block 3352 * ff8c8c8c +block 3352 1 ff2b2b2b +block 3352 2 ff393939 +block 3353 * 13826a3a +block 3354 * 13826a3a +block 3355 * ff41413e +block 3356 * ff41413e +block 3357 * ff45443a +block 3359 * ff41413e +block 3360 * ff3e3d36 +block 3361 * ff41413e +block 3362 * ff41413e +block 3363 * ff41413e +block 3364 * ff41413e +block 3365 * ffbfb3a6 +block 3365 0 ffac9c92 +block 3365 1 ffac9c92 +block 3365 2 ffac9c92 +block 3365 3 ffac9c92 +block 3365 12 ffac9c92 +block 3365 13 ffac9c92 +block 3365 14 ffac9c92 +block 3365 15 ffac9c92 +block 3366 * 07daf0f4 +block 3367 * 3733394a +block 3368 * 3be5e5e5 +block 3369 * 07daf0f4 +block 3371 * ff7b7c7c +block 3372 * ff8c8c8b +block 3372 1 ff9e9e9d +block 3372 2 ff929292 +block 3372 4 ff9e9e9d +block 3372 5 ff867a72 +block 3372 6 ff888888 +block 3372 7 ff848689 +block 3372 8 ff757577 +block 3372 9 ff66260b +block 3372 10 ffc0c0c0 +block 3372 11 ffa9afb6 +block 3373 * ff141414 +block 3374 * ff9e9e9d +block 3375 * 3733394a +block 3376 * 3733394a +block 3377 * f4020202 +block 3378 * ff8c8c8c +block 3378 3 ff56372a +block 3378 4 ff3145dd +block 3378 5 ff181818 +block 3378 6 ffb3c9b4 +block 3378 7 ffe4dfc1 +block 3378 8 ff919191 +block 3379 0 ff999791 +block 3379 1 ff9a9a9a +block 3379 2 ff8d8c8a +block 3379 3 ff949490 +block 3379 4 ff7f7f7f +block 3379 5 ff9d9f9f +block 3379 6 ffa1a1a0 +block 3379 7 ff7f7f7e +block 3379 8 ff7b7b7a +block 3379 9 ff80817e +block 3379 10 ff7c7d7a +block 3379 11 ff887c7c +block 3379 12 ff8a8b8a +block 3379 13 ff8d8d89 +block 3379 14 ff9b9b9b +block 3379 15 ff8c8c8c +block 3380 * ff144f81 +block 3381 * ff7c007c +block 3382 * ff2e2b29 +block 3382 0 ff1a2025 +block 3382 1 ff1a2025 +block 3382 2 ff1a2025 +block 3382 3 ff1a2025 +block 3383 * ff3146d7 +block 3383 0 ff3145dd +block 3383 1 ff3145dd +block 3383 2 ff3145dd +block 3383 3 ff3145dd +block 3384 * 19867a1a +block 3385 * ff817c13 +block 3386 * 3733394a +block 3387 * 3733394a +block 3388 * 3733394a +block 3389 * 3733394a +block 3390 * ff373737 +block 3390 0 ff521e05 +block 3390 1 ff5c3220 +block 3390 2 ff442112 +block 3390 3 ff592a14 +block 3390 4 ff4f1a01 +block 3390 5 ff603420 +block 3390 6 ff552610 +block 3390 7 ff3a5217 +block 3390 9 ff471600 +block 3390 11 ff5a2e09 +block 3391 * ee073f0a +block 3392 0 7f0d441f +block 3392 1 830d431e +block 3392 2 80063a17 +block 3393 * ff202942 +block 3393 0 ff531919 +block 3393 2 ff5b5f0e +block 3393 3 ff531a19 +block 3393 5 ff5d6011 +block 3393 6 ff531919 +block 3393 8 ff5b5f0e +block 3393 9 ff531a19 +block 3393 11 ff5d6011 +block 3393 12 ff531919 +block 3393 14 ff5b5f0e +block 3393 15 ff531a19 +block 3394 * ff7c007c +block 3395 * ff41413e +block 3396 * ff0b1505 +block 3397 0 51555d5e +block 3397 1 a6976542 +block 3397 2 a6875990 +block 3397 3 a6576c91 +block 3397 4 a68d8b45 +block 3397 5 a6488148 +block 3397 6 a6977b84 +block 3397 7 a64f5354 +block 3397 8 a67c8383 +block 3397 9 a6416675 +block 3397 10 a66d4e90 +block 3397 11 a6424b78 +block 3397 12 a6554a3f +block 3397 13 a644503c +block 3397 14 a6704645 +block 3397 15 a6343636 +block 3398 * ff7c007c +block 3398 0 ff787c86 +block 3398 1 ff807c7d +block 3398 2 ff727184 +block 3398 3 ff707985 +block 3398 4 ff787978 +block 3398 5 ff727b78 +block 3398 11 ff6c7586 +block 3398 13 ff6a777b +block 3399 * ff21232d +block 3400 * ff4d5360 +block 3401 * ff737987 +block 3402 * ff565a65 +block 3403 * ffdcdcdc +block 3404 * ffdcdcdc +block 3405 * ff13121d +block 3406 * ff1a1725 +block 3407 * ff1a1725 +block 3408 * ff1a1725 +block 3409 * 3733394a +block 3412 * ff30333d +block 3413 * ff30333d +block 3414 * ff30333d +block 3415 * ff30333d +block 3418 * ffa2824f +block 3419 * ff30343d +block 3420 * ff30343d +block 3421 * ff30343d +block 3422 * ff30343d +block 3426 * 3b515151 +block 3426 0 3bc15b39 +block 3427 * 34513d26 +block 3428 * ff282824 +block 3428 1 7330302a +block 3429 * ff65c13e +block 3430 * ff4a4a45 +block 3430 1 ff494944 +block 3430 2 ff4b4b45 +block 3430 3 ff3c3a37 +block 3430 4 9367645b +block 3431 * c05a0cc1 +block 3432 * 34262d24 +block 3433 * ff333230 +block 3435 * ff7c007c +block 3436 * ff816636 +block 3437 * ff313642 +block 3438 * ff737271 +block 3440 * ff4c473c +block 3441 * ff4c4837 +block 3442 * ff403b33 +block 3443 * ff787b7b +block 3444 * af646768 +block 3445 * cf8f7448 +block 3447 * 2ff5e444 +block 3448 * 2fc2c2c2 +block 3449 * 2f37d2cc +block 3450 * ff313642 +block 3451 * ffdcdcdc +block 3452 * ffdcdcdc +block 3453 * ffdcdcdc +block 3454 * ffdcdcdc +block 3455 * ffdcdcdc +block 3456 * ffdcdcdc +block 3457 * ffdcdcdc +block 3458 * ffdcdcdc +block 3459 * ffdcdcdc +block 3460 * ffe9ecec +block 3461 * ffdcdcdc +block 3462 * ffe9ecec +block 3463 * ffdcdcdc +block 3464 * ff7d7d7d +block 3465 * ff7d7d7d +block 3466 * ff7d7d7d +block 3467 * ffacc8be +block 3470 * ffa95821 +block 3471 * ffa6551d +block 3472 * ffa6551d +block 3473 * ffa6551d +block 3474 * ffa2521b +block 3475 * 20986900 +block 3476 * ff696359 +block 3476 0 ff9a5b40 +block 3476 1 ff9a5b40 +block 3476 2 ff9a5b40 +block 3476 3 ff9a5b40 +block 3477 * ff6aaa96 +block 3478 * ff335b4b +block 3479 * ffa5c2f5 +block 3480 * ffa95b33 +block 3482 * ff828383 +block 3483 * ffb3b3b6 +block 3484 * ff997162 +block 3485 * ff858586 +block 3486 * ffb7b7b9 +block 3487 * ff9f7262 +block 3488 * ff5a3f1c +block 3489 * ff5a3f1c +block 3491 * ffa2521b +block 3493 * 3733394a +block 3494 * 3733394a +block 3495 * 3733394a +block 3496 * 3733394a +block 3497 * 3733394a +block 3499 * 4f4a5c3a +block 3501 * 61237431 +block 3501 12 861d8c37 +block 3501 13 861d8c37 +block 3501 14 861d8c37 +block 3501 15 861d8c37 +block 3502 * bc78c865 +block 3503 * ff3d2712 +block 3504 * ff63ab9e +block 3505 * ff342817 +block 3505 0 ff4e3e29 +block 3505 1 ff4e3e29 +block 3505 2 ff4e3e29 +block 3505 3 ff4e3e29 +block 3506 * 26b18dd3 +block 3507 * 2aa2bf8a +block 3508 * 2d25988a +block 3509 * 315f8620 +block 3510 * 2bb0c58b +block 3511 * 2f659649 +block 3512 * 22643904 +block 3513 * 30678726 +block 3514 * 305e9941 +block 3516 * ff3d2712 +block 3517 * ff6c5130 +block 3518 * ffc1ae78 +block 3519 * ff3d2712 +block 3520 * ff9f7351 +block 3521 * ffa95b33 +block 3522 * ffdcdcdc +block 3523 * ff1a1725 +block 3524 * ff6c5130 +block 3525 * ffc1ae78 +block 3526 * ff3d2712 +block 3527 * ff9f7351 +block 3528 * ffa95b33 +block 3529 * 3733394a +block 3530 * 3733394a +block 3531 * 3733394a +block 3532 * 3733394a +block 3533 * ffa95b33 +block 3534 * ff4c473c +block 3535 * ff403b33 +block 3536 * ff4c4837 +block 3537 * ffe9ecec +block 3538 * ff444444 +block 3539 * ff444444 +block 3540 * ff987a4a +block 3541 * ff3d2712 +block 3542 * ff313642 +block 3543 * ffa95b33 +block 3544 * ff4c473c +block 3544 1 ff403b33 +block 3544 2 ff4c4837 +block 3545 * ff3d2712 +block 3546 * ff313642 +block 3547 * ffa95b33 +block 3548 * ff4c473c +block 3548 1 ff403b33 +block 3548 2 ff4c4837 +block 3549 * ff1d3e9b +block 3549 1 ff725500 +block 3549 2 ff157200 +block 3549 3 ff767676 +block 3549 4 ff005f00 +block 3549 5 ff526766 +block 3549 6 ff894d1f +block 3549 7 ff7c340d +block 3549 8 ff8b5023 +block 3549 9 ff7c340d +block 3549 10 ff894d1f +block 3550 * ffa5813e +block 3550 0 ff987632 +block 3550 1 ff987632 +block 3550 2 ff987632 +block 3550 3 ff987632 +block 3551 * ff8f491d +block 3551 0 ff987632 +block 3551 1 ff987632 +block 3551 2 ff987632 +block 3551 3 ff987632 +block 3552 * ff987a4a +block 3553 * ff63c64b +block 3556 * fff2fdfd +block 3557 * fff2fdfd +block 3558 * ff634d2f +block 3559 * ffd1d0c8 +block 3560 * ff2e1a0d +block 3561 * ff554419 +block 3562 * ff342817 +block 3563 * ff696359 +block 3564 * ffcdcdcd +block 3565 * ffc33232 +block 3570 * ff383836 +block 3571 * ff41413e +block 3572 * ff454543 +block 3573 * ff41413e +block 3574 * ff41413e +block 3575 * ff40413e +block 3576 * ff41413e +block 3578 * ff363833 +block 3579 * ff838792 +block 3580 * ff838792 +block 3581 * ff838792 +block 3582 * ff838792 +block 3584 * ff2e261b +block 3585 * ff5e4e36 +block 3586 * ff3e3f3d +block 3587 * ff484a4a +block 3588 * ff41413e +block 3590 * ffe9ecec +block 3595 * ff2b2c2a +block 3596 * ff2b2c2a +block 3597 * ff3a3b38 +block 3598 * ff41413e +block 3599 * ff3b3c39 +block 3600 * ffdcdcdc +block 3601 * ffdcdcdc +block 3602 * ffdcdcdc +block 3603 * ffdcdcdc +block 3604 * ffdcdcdc +block 3605 * ffdcdcdc +block 3606 * ffdcdcdc +block 3608 * 46daf0f4 +block 3609 * c3853e20 +block 3610 * ffa02722 +block 3611 * fff2c83e +block 3612 * ffa2824f +block 3613 * ffa2824f +block 3614 * ff966153 +block 3615 * ff444444 +block 3616 * c3853e20 +block 3617 * ffe9ecec +block 3618 * fff2fdfd +block 3619 * fff2fdfd +block 3620 * fff2fdfd +block 3621 * ff444444 +block 3622 * be91b7fd +block 3623 * 6e4d6a28 +block 3624 * ff6c5130 +block 3627 * ff9b7734 +block 3627 1 ff392e3c +block 3627 2 ff9d7a32 +block 3627 3 ff9b3535 +block 3627 4 ff276e7f +block 3627 5 ff377481 +block 3627 6 ff447676 +block 3627 7 ff3c6a3b +block 3627 8 ff416440 +block 3628 * 50382620 +block 3630 * ffdcdcdc +block 3631 * ffdcdcdc +block 3634 * ff41413e +block 3638 * ffdcdcdc +block 3639 * ffdcdcdc +block 3649 * 3733394a +block 3650 * ff41413e +block 3651 * ff41413e +block 3652 * ff41413e +block 3653 * ffdcdcdc +block 3654 * ff41413e +block 3655 * ff41413e +block 3656 * 3b383838 +block 3659 * 3b8f8233 +block 3660 * ff363833 +block 3662 * ff41413e +block 3684 * 3733394a +block 3692 * ff41413e +block 3693 * ff41413e +block 3693 8 ff3e3e3b +block 3693 9 ff3e3e3b +block 3693 10 ff3e3e3b +block 3693 11 ff3e3e3b +block 3693 12 ff32322f +block 3693 13 ff32322f +block 3693 14 ff32322f +block 3693 15 ff32322f +block 3694 * ff32322f +block 3694 8 ff282824 +block 3694 9 ff282824 +block 3694 10 ff282824 +block 3694 11 ff282824 +block 3694 12 ff41413e +block 3694 13 ff41413e +block 3694 14 ff41413e +block 3694 15 ff41413e +block 3695 * ff41413e +block 3695 0 ff31312d +block 3695 1 ff31312d +block 3695 2 ff31312d +block 3695 3 ff31312d +block 3695 4 ff725424 +block 3695 5 ff725424 +block 3695 6 ff725424 +block 3695 7 ff725424 +block 3696 * ff41413e +block 3697 * ff41413e +block 3697 8 ff7c007c +block 3697 9 ff7c007c +block 3697 10 ff7c007c +block 3697 11 ff7c007c +block 3697 12 ff7c007c +block 3697 13 ff7c007c +block 3697 14 ff7c007c +block 3697 15 ff7c007c +block 3700 0 ffa4a4a3 +block 3700 1 ffa8a5a2 +block 3700 2 ffa5a3a1 +block 3700 3 ffa3a4a1 +block 3701 * 3733394a +block 3702 * ff353842 +block 3703 * ff353842 +block 3704 * ff353842 +block 3705 * ff353842 +block 3706 * 3733394a +block 3724 * ff3f3831 +block 3725 * ff1f2b1c +block 3725 0 ff1d2c1d +block 3725 1 ff1d2c1d +block 3725 2 ff1d2c1d +block 3725 3 ff1d2c1d +block 3725 12 ff1d2c1d +block 3725 13 ff1d2c1d +block 3725 14 ff1d2c1d +block 3725 15 ff1d2c1d +block 3726 * ff888a68 +block 3727 * ff91837a +block 3728 * ff614f39 +block 3729 * ff605725 +block 3730 * ff343026 +block 3731 * ff504f41 +block 3732 * ff494a3f +block 3732 0 ff282922 +block 3732 1 ff282922 +block 3732 2 ff282922 +block 3732 3 ff282922 +block 3732 12 ff282922 +block 3732 13 ff282922 +block 3732 14 ff282922 +block 3732 15 ff282922 +block 3733 * ff4a4c43 +block 3733 0 ff282922 +block 3733 1 ff282922 +block 3733 2 ff282922 +block 3733 3 ff282922 +block 3733 12 ff282922 +block 3733 13 ff282922 +block 3733 14 ff282922 +block 3733 15 ff282922 +block 3734 * ff534e3e +block 3734 0 ff282922 +block 3734 1 ff282922 +block 3734 2 ff282922 +block 3734 3 ff282922 +block 3734 12 ff282922 +block 3734 13 ff282922 +block 3734 14 ff282922 +block 3734 15 ff282922 +block 3735 * f73a3b35 +block 3750 0 7b181818 +block 3750 1 7b993232 +block 3750 2 7b657e32 +block 3750 3 7b654b32 +block 3750 4 7b324bb2 +block 3750 5 7b7e3eb2 +block 3750 6 7b4b7e99 +block 3750 7 7b999999 +block 3750 8 7b4b4b4b +block 3750 9 7bf17ea4 +block 3750 10 7b7ecb18 +block 3750 11 7be4e432 +block 3750 12 7b6599d8 +block 3750 13 7bb24bd8 +block 3750 14 7bd87e32 +block 3750 15 7bffffff +block 3751 0 7b181818 +block 3751 1 7b993232 +block 3751 2 7b657e32 +block 3751 3 7b654b32 +block 3751 4 7b324bb2 +block 3751 5 7b7e3eb2 +block 3751 6 7b4b7e99 +block 3751 7 7b999999 +block 3751 8 7b4b4b4b +block 3751 9 7bf17ea4 +block 3751 10 7b7ecb18 +block 3751 11 7be4e432 +block 3751 12 7b6599d8 +block 3751 13 7bb24bd8 +block 3751 14 7bd87e32 +block 3751 15 7bffffff +block 3752 0 ff6c684f +block 3752 1 ffe0684f +block 3752 2 ff8da858 +block 3752 3 ffac824f +block 3752 4 ff6c88cf +block 3752 5 ffac68af +block 3752 6 ff6cc8af +block 3752 7 ffccc8af +block 3752 8 ff9c987f +block 3752 9 ffeca8c6 +block 3752 10 ffa6c965 +block 3752 11 ffece174 +block 3752 12 ff6cb2cf +block 3752 13 ffec68bd +block 3752 14 ffec9d4f +block 3752 15 ffece8cf +block 3753 * 1f9fc073 +block 3753 1 2daac980 +block 3753 2 50da8a80 +block 3753 4 2daac980 +block 3753 5 50da8a80 +block 3753 7 2daac980 +block 3753 8 50da8a80 +block 3753 10 2daac980 +block 3753 11 50da8a80 +block 3753 13 2daac980 +block 3753 14 50da8a80 +block 3754 * 60716133 +block 3755 * ffdae0a2 +block 3756 * ffdae0a2 +block 3757 * ffdae0a2 +block 3758 * ffdae0a2 +block 3759 * ff450709 +block 3760 * ff7c007c +block 3761 * ff7c007c +block 3762 * ff828383 +block 3763 * ff828383 +block 3764 * ff888888 +block 3765 * ff888888 +block 3766 * ff858586 +block 3767 * ff858586 +block 3770 * ff997162 +block 3771 * ff997162 +block 3774 * ff9f7262 +block 3775 * ff9f7262 +block 3778 * ffb3b3b6 +block 3779 * ffb3b3b6 +block 3782 * ffb7b7b9 +block 3783 * ffb7b7b9 +block 3784 * ffc0c1c2 +block 3786 * ff450709 +block 3787 * ffc0c1c2 +block 3788 * ff450709 +block 3789 * ff5d1a1e +block 3790 * ff393b4d +block 3791 * 136d7359 +block 3792 * 7284100c +block 3793 * ff7a797a +block 3794 * ffdbd298 +block 3795 * ffdfd6aa +block 3796 * ffdfd6aa +block 3797 * ffdfd6aa +block 3798 * ffdfd6aa +block 3799 * ffdfd6aa +block 3801 * ff8a8a8a +block 3802 * ff41413e +block 3803 * ff5c7a7b +block 3804 * ffaa9128 +block 3805 * ff7c007c +block 3805 0 ff1e5229 +block 3805 1 ff282a5c +block 3807 * ffa6551d +block 3808 * ffa6551d +block 3809 * ffb5611f +block 3810 * ffb5611f +block 3811 * ffb5611f +block 3811 4 ffbd651f +block 3811 5 ffbd651f +block 3811 6 ffbd651f +block 3811 7 ffbd651f +block 3811 8 ffbd651f +block 3811 9 ffbd651f +block 3811 10 ffbd651f +block 3811 11 ffbd651f +block 3812 * ffb5611f +block 3813 * ffb5611f +block 3814 * 3642541c +block 3816 * ff7d7d7d +block 3817 * ff7d7d7d +block 3818 * ff7d7d7d +block 3819 * ff9e9e9e +block 3820 * ff666d64 +block 3820 0 ff50524e +block 3820 1 ff50524e +block 3820 2 ff50524e +block 3820 3 ff50524e +block 3820 12 ff50524e +block 3820 13 ff50524e +block 3820 14 ff50524e +block 3820 15 ff50524e +block 3821 * ffb5611f +block 3821 4 ffba621c +block 3821 5 ffba621c +block 3821 6 ffba621c +block 3821 7 ffba621c +block 3821 8 ffba621c +block 3821 9 ffba621c +block 3821 10 ffba621c +block 3821 11 ffba621c +block 3822 * ffa97da9 +block 3823 * ffa97da9 +block 3824 * ffa97da9 +block 3825 * ffa97da9 +block 3826 * ffa97da9 +block 3827 * ffaa80aa +block 3827 4 ffab81ab +block 3827 5 ffab81ab +block 3827 6 ffab81ab +block 3827 7 ffab81ab +block 3827 8 ffab81ab +block 3827 9 ffab81ab +block 3827 10 ffab81ab +block 3827 11 ffab81ab +block 3828 * ff423d3f +block 3829 * ffb19056 +block 3830 * ff483824 +block 3831 * ffab8454 +block 3832 * ff77362f +block 3833 * ff735934 +block 3834 * ff399693 +block 3835 * ffae5c3b +block 3836 * ffc4b076 +block 3837 * ffd79194 +block 3838 * ff89395a +block 3839 * ff36212c +block 3839 0 ffb98d89 +block 3839 1 ffb98d89 +block 3839 2 ffb98d89 +block 3839 3 ffb98d89 +block 3840 * ff534229 +block 3840 0 ff66302a +block 3840 1 ff66302a +block 3840 2 ff66302a +block 3840 3 ff66302a +block 3841 * ff6c6d66 +block 3842 * ff8561bf +block 3843 * ff8460ba +block 3845 * ffeae5dd +block 3849 * ffece6df +block 3850 * ffece6df +block 3851 * ffece6df +block 3852 * ffece6df +block 3853 * ffece6df +block 3854 * ff73362a +block 3855 * ff4a4a4c +block 3877 * ff89674f +block 3878 * ff89674f +block 3879 * ff89674f +block 3880 * ff8b8872 +block 3881 * 07daf0f4 +block 3882 * 07daf0f4 +block 3883 * ff3b3838 +block 3884 * 0f252420 +block 3884 1 0f2e372b +block 3884 2 1231231c +block 3885 * ff496e34 +block 3886 * ff8c8c8b +block 3886 1 ff838483 +block 3886 2 ff807f7d +block 3887 * 3d373833 +block 3888 * 6b506153 +block 3888 0 8f536456 +block 3888 1 8f536456 +block 3888 2 8f536456 +block 3888 3 8f536456 +block 3888 4 8f536456 +block 3888 5 8f536456 +block 3889 * ff7c007c +block 3890 * ff41413e +block 3891 * ff393936 +block 3892 0 ff20281e +block 3892 1 ff243225 +block 3892 2 ff222f23 +block 3892 3 ff1f2a1f +block 3892 4 ff38281f +block 3892 5 ff423932 +block 3892 6 ff2a342e +block 3892 7 ff383d2d +block 3892 8 ff492a27 +block 3892 9 ff452f28 +block 3892 10 ff402a27 +block 3892 11 ff45312c +block 3892 12 ff474f44 +block 3892 13 ff4d2927 +block 3892 14 ff4e2d2a +block 3892 15 ff272d30 +block 3893 * ff41413e +block 3894 * ff41413e +block 3895 * ff463a2d +block 3895 4 ff443a30 +block 3895 5 ff443a30 +block 3895 6 ff443a30 +block 3895 7 ff443a30 +block 3895 8 ff443a30 +block 3895 9 ff443a30 +block 3895 10 ff443a30 +block 3895 11 ff443a30 +block 3896 * ffe5941d +block 3897 * ffb4925a +block 3898 * ffb4925a +block 3899 * ffcaa04a +block 3900 * 943a6e0f +block 3901 * 96798560 +block 3902 * 4fc9c2b5 +block 3903 * ff979785 +block 3904 * ff956755 +block 3905 * ff956755 +block 3906 * ff9f7262 +block 3907 * ff9f7262 +block 3908 * 6f316b1b +block 3909 * 17dac6af +block 3910 * 17d2a34b +block 3911 * 17d289a3 +block 3912 * 179caca6 +block 3913 * 17d3c261 +block 3914 * 17aabe70 +block 3915 * 17cc9179 +block 3916 * 17c2ae96 +block 3917 * 17cfbba4 +block 3918 * 17b4c6af +block 3919 * 17c396ab +block 3920 * 1799a3ac +block 3921 * 17c59d6b +block 3922 * 1790af64 +block 3923 * 17cb725a +block 3924 * 1796826a +block 3926 * ff89674f +block 3927 * 882e5a14 +block 3928 * ff89674f +block 3929 * ffeae5dd +block 3930 * 883a5b14 +block 3931 * ffeae5dd +block 3933 * 15535413 +block 3934 * ff68494a +block 3935 * ff4f5a73 +block 3936 * 6f366516 +block 3937 * ff6a635e +block 3938 * ff5c5d59 +block 3939 * 7570742f +block 3940 * ff536a6a +block 3941 * ff4e6857 +block 3942 * 5338592a +block 3943 0 ff504130 +block 3943 1 ff68777f +block 3943 2 ff585847 +block 3943 3 ff3e515b +block 3944 * 1ca2b164 +block 3944 1 32b0bb72 +block 3944 2 48c09f5d +block 3944 4 32b0bb72 +block 3944 5 48c09f5d +block 3944 7 32b0bb72 +block 3944 8 48c09f5d +block 3944 10 32b0bb72 +block 3944 11 48c09f5d +block 3944 13 32b0bb72 +block 3944 14 48c09f5d +block 3945 * 5f655f23 +block 3946 * ff73664e +block 3947 * 1ba4cb88 +block 3947 1 20a5ca87 +block 3947 2 3ea4b94d +block 3947 4 20a5ca87 +block 3947 5 3ea4b94d +block 3947 7 20a5ca87 +block 3947 8 3ea4b94d +block 3947 10 20a5ca87 +block 3947 11 3ea4b94d +block 3947 13 20a5ca87 +block 3947 14 3ea4b94d +block 3948 * 605f7427 +block 3949 * ff848685 +block 3950 * 2c62893e +block 3950 1 4561873e +block 3950 2 789a529a +block 3950 4 4561873e +block 3950 5 789a529a +block 3950 7 4561873e +block 3950 8 789a529a +block 3950 10 4561873e +block 3950 11 789a529a +block 3950 13 4561873e +block 3950 14 789a529a +block 3951 * 5f675a3e +block 3952 * ff848685 +block 3953 * 22616a44 +block 3953 1 3a6c7957 +block 3953 2 78818845 +block 3953 4 3a6c7957 +block 3953 5 78818845 +block 3953 7 3a6c7957 +block 3953 8 78818845 +block 3953 10 3a6c7957 +block 3953 11 78818845 +block 3953 13 3a6c7957 +block 3953 14 78818845 +block 3954 * 60576629 +block 3955 * ffbcbcbc +block 3956 * 219c996e +block 3956 1 2d9f9d73 +block 3956 2 2da49060 +block 3956 4 2d9f9d73 +block 3956 5 2da49060 +block 3956 7 2d9f9d73 +block 3956 8 2da49060 +block 3956 10 2d9f9d73 +block 3956 11 2da49060 +block 3956 13 2d9f9d73 +block 3956 14 2da49060 +block 3957 * 5f606026 +block 3958 * ffbcbcbc +block 3959 * 1bc4d796 +block 3959 1 25c4d993 +block 3959 2 43dbc71f +block 3959 4 25c4d993 +block 3959 5 43dbc71f +block 3959 7 25c4d993 +block 3959 8 43dbc71f +block 3959 10 25c4d993 +block 3959 11 43dbc71f +block 3959 13 25c4d993 +block 3959 14 43dbc71f +block 3960 * 584c590e +block 3961 * ff74a7fd +block 3962 * 276d8232 +block 3962 1 376c8232 +block 3962 2 6f563f28 +block 3962 4 376c8232 +block 3962 5 6f563f28 +block 3962 7 376c8232 +block 3962 8 6f563f28 +block 3962 10 376c8232 +block 3962 11 6f563f28 +block 3962 13 376c8232 +block 3962 14 6f563f28 +block 3963 * 5f4f4f16 +block 3964 * ff8db4fa +block 3965 * 23ceb584 +block 3965 1 30c6b07d +block 3965 2 5ad4a861 +block 3965 4 30c6b07d +block 3965 5 5ad4a861 +block 3965 7 30c6b07d +block 3965 8 5ad4a861 +block 3965 10 30c6b07d +block 3965 11 5ad4a861 +block 3965 13 30c6b07d +block 3965 14 5ad4a861 +block 3966 * 60716e2a +block 3968 * ff502f11 +block 3968 1 ff543114 +block 3968 2 ff674121 +block 3968 4 ff543114 +block 3968 5 ff674121 +block 3968 7 ff543114 +block 3968 8 ff674121 +block 3968 10 ff543114 +block 3968 11 ff674121 +block 3968 13 ff543114 +block 3968 14 ff674121 +block 3969 * 58485010 +block 3970 * ff837c77 +block 3971 * 2aad946a +block 3971 1 44ab9064 +block 3971 2 7cc08843 +block 3971 4 44ab9064 +block 3971 5 7cc08843 +block 3971 7 44ab9064 +block 3971 8 7cc08843 +block 3971 10 44ab9064 +block 3971 11 7cc08843 +block 3971 13 44ab9064 +block 3971 14 7cc08843 +block 3972 * 5f6c631f +block 3973 * 2da67e58 +block 3973 1 3ea7815c +block 3973 2 78c07d42 +block 3973 4 3ea7815c +block 3973 5 78c07d42 +block 3973 7 3ea7815c +block 3973 8 78c07d42 +block 3973 10 3ea7815c +block 3973 11 78c07d42 +block 3973 13 3ea7815c +block 3973 14 78c07d42 +block 3975 * 5f6a642c +block 3976 * ffc82e2d +block 3977 * 0fa2d18d +block 3977 1 16a0d08c +block 3977 2 2ba0d08b +block 3977 4 16a0d08c +block 3977 5 2ba0d08b +block 3977 7 16a0d08c +block 3977 8 2ba0d08b +block 3977 10 16a0d08c +block 3977 11 2ba0d08b +block 3977 13 16a0d08c +block 3977 14 2ba0d08b +block 3978 * 5f57722c +block 3979 * ff956f51 +block 3980 * 1a93b54e +block 3980 1 2894b64f +block 3980 2 4ab2812b +block 3980 4 2894b64f +block 3980 5 4ab2812b +block 3980 7 2894b64f +block 3980 8 4ab2812b +block 3980 10 2894b64f +block 3980 11 4ab2812b +block 3980 13 2894b64f +block 3980 14 4ab2812b +block 3981 * 5f635f22 +block 3982 * ffcbc4b9 +block 3983 * 1b97ab4c +block 3983 1 31a1b255 +block 3983 2 47a5b558 +block 3983 4 31a1b255 +block 3983 5 47a5b558 +block 3983 7 31a1b255 +block 3983 8 47a5b558 +block 3983 10 31a1b255 +block 3983 11 47a5b558 +block 3983 13 31a1b255 +block 3983 14 47a5b558 +block 3984 * 5f5d6a22 +block 3985 * ff90674c +block 3986 * 2ab78881 +block 3986 1 41b6877f +block 3986 2 7cae6e66 +block 3986 4 41b6877f +block 3986 5 7cae6e66 +block 3986 7 41b6877f +block 3986 8 7cae6e66 +block 3986 10 41b6877f +block 3986 11 7cae6e66 +block 3986 13 41b6877f +block 3986 14 7cae6e66 +block 3987 * 5f6a6332 +block 3988 * ff77553b +block 3989 * 294b6724 +block 3989 1 34506d25 +block 3989 2 42405921 +block 3989 4 34506d25 +block 3989 5 42405921 +block 3989 7 34506d25 +block 3989 8 42405921 +block 3989 10 34506d25 +block 3989 11 42405921 +block 3989 13 34506d25 +block 3989 14 42405921 +block 3990 * 5842510e +block 3992 * 0b5e8b3a +block 3992 1 116a9b41 +block 3992 2 1a688933 +block 3992 4 116a9b41 +block 3992 5 1a688933 +block 3992 7 116a9b41 +block 3992 8 1a688933 +block 3992 10 116a9b41 +block 3992 11 1a688933 +block 3992 13 116a9b41 +block 3992 14 1a688933 +block 3993 * 58455510 +block 3994 * ff7c007c +block 3995 * 0dcfed98 +block 3995 1 0fceec95 +block 3995 2 25d0ee9a +block 3995 4 0fceec95 +block 3995 5 25d0ee9a +block 3995 7 0fceec95 +block 3995 8 25d0ee9a +block 3995 10 0fceec95 +block 3995 11 25d0ee9a +block 3995 13 0fceec95 +block 3995 14 25d0ee9a +block 3996 * 594f6019 +block 4000 * 2f745e0a +block 4000 0 58829263 +block 4000 2 60766f67 +block 4000 3 96335c5f +block 4000 4 9f5e7b15 +block 4000 5 8a9d6464 +block 4000 6 976f7a5d +block 4000 7 4344732c +block 4000 8 927d926e +block 4000 9 613f2129 +block 4000 10 5815457c +block 4000 11 9f725a1c +block 4000 12 9f2b580a +block 4000 13 6a6a7753 +block 4000 14 58829263 +block 4002 0 66bbbdc4 +block 4002 1 15c09047 +block 4002 2 489e7095 +block 4002 3 497693a5 +block 4002 4 40a5a065 +block 4002 5 359ba876 +block 4002 6 3b7d5765 +block 4002 7 44626262 +block 4002 8 44888a8a +block 4002 9 2093b2b0 +block 4002 10 3c855868 +block 4002 11 614e5f75 +block 4002 12 33938562 +block 4002 13 1e658e5d +block 4002 14 20543030 +block 4002 15 65535353 +block 4003 * ffcaa04a +block 4004 * ffc37218 +block 4004 0 ffc67618 +block 4004 1 ffc67618 +block 4004 2 ffc67618 +block 4004 3 ffc67618 +block 4004 12 ffc67618 +block 4004 13 ffc67618 +block 4004 14 ffc67618 +block 4004 15 ffc67618 +block 4005 * ff3c393c +block 4006 * ffeae5dd +block 4007 * ffeae5dd +block 4021 * ff4a4f5d +block 4022 * ff4a4f5d +block 4023 * ff4a4f5d +block 4024 * ff4a4f5d +block 4025 * ff2d2f39 +block 4026 * ff2d2f39 +block 4027 * ff2d2f39 +block 4028 * ff2d2f39 +block 4029 * 993e7648 +block 4030 * 70575f24 +block 4031 * 1c234413 +block 4031 1 41880409 +block 4031 2 7b88110c +block 4031 4 41880409 +block 4031 5 7b88110c +block 4031 7 41880409 +block 4031 8 7b88110c +block 4031 10 41880409 +block 4031 11 7b88110c +block 4031 13 41880409 +block 4031 14 7b88110c +block 4032 * 5f5f3e0d +block 4033 * ff7c007c +block 4034 * ff7c007c +block 4035 * ffe9ecec +block 4036 * fff07613 +block 4037 * ffbd44b3 +block 4038 * ff3aafd9 +block 4039 * fff8c527 +block 4040 * ff70b919 +block 4041 * ffed8dac +block 4042 * ff3e4447 +block 4043 * ff9aa1a1 +block 4044 * ff158991 +block 4045 * ff792aac +block 4046 * ff35399d +block 4047 * ff724728 +block 4048 * ff546d1b +block 4049 * ffa02722 +block 4050 * ff141519 +block 4051 * ffe9ecec +block 4052 * fff07613 +block 4053 * ffbd44b3 +block 4054 * ff3aafd9 +block 4055 * fff8c527 +block 4056 * ff70b919 +block 4057 * ffed8dac +block 4058 * ff3e4447 +block 4059 * ff9aa1a1 +block 4060 * ff158991 +block 4061 * ff792aac +block 4062 * ff35399d +block 4063 * ff724728 +block 4064 * ff546d1b +block 4065 * ffa02722 +block 4066 * ff141519 +block 4067 * 3733394a +block 4068 * 79627445 +block 4071 * 8e443517 +block 4072 * ff8a8d96 +block 4073 * ff8a8d96 +block 4074 * ff8a8d96 +block 4075 * ff8a8d96 +block 4077 * 73151515 +block 4078 * 731a9226 +block 4079 * 731a78d6 +block 4080 * 73aeaeae +block 4081 * 73c8711a +block 4082 * ff313131 +block 4083 * ffc5701a +block 4084 * 0acdb42f +block 4084 1 16c7ab32 +block 4084 2 29d8bd3a +block 4084 4 16c7ab32 +block 4084 5 29d8bd3a +block 4084 7 16c7ab32 +block 4084 8 29d8bd3a +block 4084 10 16c7ab32 +block 4084 11 29d8bd3a +block 4084 13 16c7ab32 +block 4084 14 29d8bd3a +block 4085 * 5f6f7127 +block 4086 * ff282828 +block 4088 * ff61aad0 +block 4089 * 88285f1d +block 4090 * 2633460f +block 4090 1 363a4d10 +block 4090 2 686e1c07 +block 4090 4 363a4d10 +block 4090 5 686e1c07 +block 4090 7 363a4d10 +block 4090 8 686e1c07 +block 4090 10 363a4d10 +block 4090 11 686e1c07 +block 4090 13 363a4d10 +block 4090 14 686e1c07 +block 4091 * 5f553f10 +block 4094 0 efa6a6a6 +block 4094 1 bfa9a9a9 +block 4094 2 3b9c9c9c +block 4095 0 ff838383 +block 4095 1 ff818181 +block 4095 2 ff898989 diff --git a/config/MattparksCore.conf b/config/MattparksCore.conf new file mode 100755 index 0000000..d2722f8 --- /dev/null +++ b/config/MattparksCore.conf @@ -0,0 +1,12 @@ +# Configuration file + +#################### +# general +#################### + +general { + B:"Check for updates"=false + B:"Enable Mattparks donator capes"=true +} + + diff --git a/config/MelonSpawn.cfg b/config/MelonSpawn.cfg new file mode 100755 index 0000000..4660413 --- /dev/null +++ b/config/MelonSpawn.cfg @@ -0,0 +1,11 @@ +# Configuration file + +#################### +# general +#################### + +general { + I:melonRarity=1 +} + + diff --git a/config/NGUpgrades.json b/config/NGUpgrades.json new file mode 100755 index 0000000..d8a7a70 --- /dev/null +++ b/config/NGUpgrades.json @@ -0,0 +1,4 @@ +{ + "defaultPetrolQt": 50, + "generation": true +} \ No newline at end of file diff --git a/config/NationsCapes.cfg b/config/NationsCapes.cfg new file mode 100755 index 0000000..e69de29 diff --git a/config/Netherrocks Configuration/NetherrocksIDs.cfg b/config/Netherrocks Configuration/NetherrocksIDs.cfg new file mode 100755 index 0000000..06c892b --- /dev/null +++ b/config/Netherrocks Configuration/NetherrocksIDs.cfg @@ -0,0 +1,103 @@ +# Configuration file + +#################### +# achievements +#################### + +achievements { + I:"NetherFurnace Achievement"=6001 + I:"Netherrocks Achievement"=6000 +} + + +#################### +# armor +#################### + +armor { + I:"Dragonstone Boots"=6065 + I:"Dragonstone Chest"=6063 + I:"Dragonstone Helm"=6062 + I:"Dragonstone Legs"=6064 + I:"Fyrite Boots"=6053 + I:"Fyrite Chest"=6051 + I:"Fyrite Helm"=6050 + I:"Fyrite Legs"=6052 + I:"Illumenite Boots"=6061 + I:"Illumenite Chest"=6059 + I:"Illumenite Helm"=6058 + I:"Illumenite Legs"=6060 + I:"Malachite Boots"=6057 + I:"Malachite Chest"=6055 + I:"Malachite Helm"=6054 + I:"Malachite Legs"=6056 +} + + +#################### +# blocks +#################### + +blocks { + I:"Argonite Block"=571 + I:"Argonite Ore"=570 + I:"Ashstone Block"=565 + I:"Ashstone Ore"=564 + I:"Dragonstone Block"=569 + I:"Dragonstone Ore"=568 + I:"Fyrite Block"=561 + I:"Fyrite Ore"=560 + I:"Illumenite Block"=567 + I:"Illumenite Ore"=566 + I:"Malachite Block"=563 + I:"Malachite Ore"=562 + I:"Nether Furnace"=572 + I:"Nether Furnace-On"=573 +} + + +#################### +# items +#################### + +items { + I:"Argonite Ingot"=6005 + I:"Ashstone Ingot"=6002 + I:"Dragonstone Ingot"=6004 + I:"Fyrite Ingot"=6000 + I:"Illumenite Ingot"=6003 + I:"Malachite Ingot"=6001 +} + + +#################### +# tools +#################### + +tools { + I:"Argonite Axe"=6036 + I:"Argonite Hoe"=6039 + I:"Argonite Pickaxe"=6035 + I:"Argonite Shovel"=6037 + I:"Argonite Sword"=6038 + I:"Ashstone Axe"=6026 + I:"Ashstone Hoe"=6029 + I:"Ashstone Pickaxe"=6025 + I:"Ashstone Shovel"=6027 + I:"Ashstone Sword"=6028 + I:"Dragonstone Axe"=6031 + I:"Dragonstone Hoe"=6034 + I:"Dragonstone Pickaxe"=6030 + I:"Dragonstone Shovel"=6032 + I:"Dragonstone Sword"=6033 + I:"Fyrite Pickaxe"=6042 + I:"Fyrite Sword"=6040 + I:"Illumenite Sword"=6041 + I:"Malachite Axe"=6021 + I:"Malachite Hoe"=6024 + I:"Malachite Pickaxe"=6020 + I:"Malachite Shovel"=6022 + I:"Malachite Sword"=6023 +} + + diff --git a/config/Netherrocks Configuration/NetherrocksLocalisation.lang b/config/Netherrocks Configuration/NetherrocksLocalisation.lang new file mode 100755 index 0000000..c098ff8 --- /dev/null +++ b/config/Netherrocks Configuration/NetherrocksLocalisation.lang @@ -0,0 +1,103 @@ +# Configuration file + +#################### +# achievement names +#################### + +"achievement names" { + S:NetherFurnaceAchievement=Super Furnace + S:NetherRocksAchievement=Welcome to Netherrocks! +} + + +#################### +# armor names +#################### + +"armor names" { + S:DragonstoneBootsName=Dragonstone Boots + S:DragonstoneChestName=Dragonstone Chestplate + S:DragonstoneHelmName=Dragonstone Helmet + S:DragonstoneLegsName=Dragonstone Leggings + S:FyriteBootsName=Fyrite Boots + S:FyriteChestName=Fyrite Chestplate + S:FyriteHelmName=Fyrite Helmet + S:FyriteLegsName=Fyrite Leggings + S:IllumeniteBootsName=Illumenite Boots + S:IllumeniteChestName=Illumenite Chestplate + S:IllumeniteHelmName=Illumenite Helmet + S:IllumeniteLegsName=Illumenite Leggings + S:MalachiteBootsName=Malachite Boots + S:MalachiteChestName=Malachite Chestplate + S:MalachiteHelmName=Malachite Helmet + S:MalachiteLegsName=Malachite Leggings +} + + +#################### +# block names +#################### + +"block names" { + S:ArgoniteOreName=Argonite Ore + S:ArgontieBlockName=Argonite Block + S:AshstoneBlockName=Ashstone Block + S:AshstoneOreName=Ashstone Ore + S:DragonstoneBlockName=Dragonstone Block + S:DragonstoneOreName=Dragonstone Ore + S:FyriteBlockName=Fyrite Block + S:FyriteOreName=Fyrite Ore + S:IllumeniteBlockName=Illumenite Block + S:IllumeniteOreName=Illumenite Ore + S:MalachiteBlockName=Malachite Block + S:MalachiteOreName=Malachite Ore + S:NetherFurnaceName=Nether Furnace + S:NetherFurnaceOnName=Nether Furnace +} + + +#################### +# item names +#################### + +"item names" { + S:ArgoniteIngotName=Argonite Ingot + S:AshstoneGemName=Ashstone + S:DragonstoneGemName=Dragonstone + S:FyriteIngotName=Fyrite Ingot + S:IllumeniteIngotName=Illumenite Ingot + S:MalachiteIngotName=Malachite Ingot +} + + +#################### +# tool names +#################### + +"tool names" { + S:ArgoniteAxeName=Argonite Axe + S:ArgoniteHoeName=Argonite Hoe + S:ArgonitePickName=Argonite Pickaxe + S:ArgoniteShovelName=Argonite Shovel + S:ArgoniteSwordName=Argonite Sword + S:AshstoneAxeName=Ashstone Axe + S:AshstoneHoeName=Ashstone Hoe + S:AshstonePickName=Ashstone Pickaxe + S:AshstoneShovelName=Ashstone Shovel + S:AshstoneSwordName=Ashstone Sword + S:DragonstoneAxeName=Dragonstone Axe + S:DragonstoneHoeName=Dragonstone Hoe + S:DragonstonePickName=Dragonstone Pickaxe + S:DragonstoneShovelName=Dragonstone Shovel + S:DragonstoneSwordName=Dragonstone Sword + S:FyritePickName=Fyrite Pickaxe + S:FyriteSwordName=Fyrite Sword + S:IllumeniteSwordName=Illumenite Sword + S:MalachiteAxeName=Malachite Axe + S:MalachiteHoeName=Malachite Hoe + S:MalachitePickName=Malachite Pickaxe + S:MalachiteShovelName=Malachite Shovel + S:MalachiteSwordName=Malachite Sword +} + + diff --git a/config/Netherrocks Configuration/NetherrocksSettings.cfg b/config/Netherrocks Configuration/NetherrocksSettings.cfg new file mode 100755 index 0000000..103a808 --- /dev/null +++ b/config/Netherrocks Configuration/NetherrocksSettings.cfg @@ -0,0 +1,58 @@ +# Configuration file + +#################### +# custom furnace +#################### + +"custom furnace" { + I:"Fyrite Ingot Burn Time"=8000 +} + + +#################### +# custom furnaces +#################### + +"custom furnaces" { + I:"Nether Furnace Speed Multiplier"=2 + I:"Netherrack Burn Time"=100 +} + + +#################### +# spawn rates +#################### + +"spawn rates" { + I:"Argonite Spawn Rate"=10 + I:"Ashstone Spawn Rate"=10 + I:"Dragonstone Spawn Rate"=6 + I:"Fyrite Spawn Rate"=10 + I:"Illumenite Spawn Rate"=350 + I:"Malachite Spawn Rate"=10 +} + + +#################### +# toggles +#################### + +toggles { + B:"Use Separate Creative Tabs?"=true +} + + +#################### +# vein sizes +#################### + +"vein sizes" { + I:"Argonite Vein Sizes"=6 + I:"Ashstone Vein Sizes"=5 + I:"Dragonstone Vein Sizes"=5 + I:"Fyrite Vein Sizes"=6 + I:"Illumenite Vein Sizes"=15 + I:"Malachite Vein Sizes"=7 +} + + diff --git a/config/NetherrocksConfiguration/NetherrocksIDs.cfg b/config/NetherrocksConfiguration/NetherrocksIDs.cfg new file mode 100755 index 0000000..24ed4e2 --- /dev/null +++ b/config/NetherrocksConfiguration/NetherrocksIDs.cfg @@ -0,0 +1,103 @@ +# Configuration file + +#################### +# achievements +#################### + +achievements { + I:"NetherFurnace Achievement"=6001 + I:"Netherrocks Achievement"=6000 +} + + +#################### +# armor +#################### + +armor { + I:"Dragonstone Boots"=6065 + I:"Dragonstone Chest"=6063 + I:"Dragonstone Helm"=6062 + I:"Dragonstone Legs"=6064 + I:"Fyrite Boots"=6053 + I:"Fyrite Chest"=6051 + I:"Fyrite Helm"=6050 + I:"Fyrite Legs"=6052 + I:"Illumenite Boots"=6061 + I:"Illumenite Chest"=6059 + I:"Illumenite Helm"=6058 + I:"Illumenite Legs"=6060 + I:"Malachite Boots"=6057 + I:"Malachite Chest"=6055 + I:"Malachite Helm"=6054 + I:"Malachite Legs"=6056 +} + + +#################### +# blocks +#################### + +blocks { + I:"Argonite Block"=571 + I:"Argonite Ore"=570 + I:"Ashstone Block"=565 + I:"Ashstone Ore"=564 + I:"Dragonstone Block"=569 + I:"Dragonstone Ore"=568 + I:"Fyrite Block"=561 + I:"Fyrite Ore"=560 + I:"Illumenite Block"=567 + I:"Illumenite Ore"=566 + I:"Malachite Block"=563 + I:"Malachite Ore"=562 + I:"Nether Furnace"=572 + I:"Nether Furnace-On"=573 +} + + +#################### +# items +#################### + +items { + I:"Argonite Ingot"=6005 + I:"Ashstone Ingot"=6002 + I:"Dragonstone Ingot"=6004 + I:"Fyrite Ingot"=6000 + I:"Illumenite Ingot"=6003 + I:"Malachite Ingot"=6001 +} + + +#################### +# tools +#################### + +tools { + I:"Argonite Axe"=6036 + I:"Argonite Hoe"=6039 + I:"Argonite Pickaxe"=6035 + I:"Argonite Shovel"=6037 + I:"Argonite Sword"=6038 + I:"Ashstone Axe"=6026 + I:"Ashstone Hoe"=6029 + I:"Ashstone Pickaxe"=6025 + I:"Ashstone Shovel"=6027 + I:"Ashstone Sword"=6028 + I:"Dragonstone Axe"=6031 + I:"Dragonstone Hoe"=6034 + I:"Dragonstone Pickaxe"=6030 + I:"Dragonstone Shovel"=6032 + I:"Dragonstone Sword"=6033 + I:"Fyrite Pickaxe"=6042 + I:"Fyrite Sword"=6040 + I:"Illumenite Sword"=6041 + I:"Malachite Axe"=6021 + I:"Malachite Hoe"=6024 + I:"Malachite Pickaxe"=6020 + I:"Malachite Shovel"=6022 + I:"Malachite Sword"=6023 +} + + diff --git a/config/NetherrocksConfiguration/NetherrocksLocalisation.lang b/config/NetherrocksConfiguration/NetherrocksLocalisation.lang new file mode 100755 index 0000000..d77b5b2 --- /dev/null +++ b/config/NetherrocksConfiguration/NetherrocksLocalisation.lang @@ -0,0 +1,103 @@ +# Configuration file + +#################### +# achievement names +#################### + +"achievement names" { + S:NetherFurnaceAchievement=Super Furnace + S:NetherRocksAchievement=Welcome to Netherrocks! +} + + +#################### +# armor names +#################### + +"armor names" { + S:DragonstoneBootsName=Dragonstone Boots + S:DragonstoneChestName=Dragonstone Chestplate + S:DragonstoneHelmName=Dragonstone Helmet + S:DragonstoneLegsName=Dragonstone Leggings + S:FyriteBootsName=Fyrite Boots + S:FyriteChestName=Fyrite Chestplate + S:FyriteHelmName=Fyrite Helmet + S:FyriteLegsName=Fyrite Leggings + S:IllumeniteBootsName=Illumenite Boots + S:IllumeniteChestName=Illumenite Chestplate + S:IllumeniteHelmName=Illumenite Helmet + S:IllumeniteLegsName=Illumenite Leggings + S:MalachiteBootsName=Malachite Boots + S:MalachiteChestName=Malachite Chestplate + S:MalachiteHelmName=Malachite Helmet + S:MalachiteLegsName=Malachite Leggings +} + + +#################### +# block names +#################### + +"block names" { + S:ArgoniteOreName=Argonite Ore + S:ArgontieBlockName=Argonite Block + S:AshstoneBlockName=Ashstone Block + S:AshstoneOreName=Ashstone Ore + S:DragonstoneBlockName=Dragonstone Block + S:DragonstoneOreName=Dragonstone Ore + S:FyriteBlockName=Fyrite Block + S:FyriteOreName=Fyrite Ore + S:IllumeniteBlockName=Illumenite Block + S:IllumeniteOreName=Illumenite Ore + S:MalachiteBlockName=Malachite Block + S:MalachiteOreName=Malachite Ore + S:NetherFurnaceName=Nether Furnace + S:NetherFurnaceOnName=Nether Furnace +} + + +#################### +# item names +#################### + +"item names" { + S:ArgoniteIngotName=Argonite Ingot + S:AshstoneGemName=Ashstone + S:DragonstoneGemName=Dragonstone + S:FyriteIngotName=Fyrite Ingot + S:IllumeniteIngotName=Illumenite Ingot + S:MalachiteIngotName=Malachite Ingot +} + + +#################### +# tool names +#################### + +"tool names" { + S:ArgoniteAxeName=Argonite Axe + S:ArgoniteHoeName=Argonite Hoe + S:ArgonitePickName=Argonite Pickaxe + S:ArgoniteShovelName=Argonite Shovel + S:ArgoniteSwordName=Argonite Sword + S:AshstoneAxeName=Ashstone Axe + S:AshstoneHoeName=Ashstone Hoe + S:AshstonePickName=Ashstone Pickaxe + S:AshstoneShovelName=Ashstone Shovel + S:AshstoneSwordName=Ashstone Sword + S:DragonstoneAxeName=Dragonstone Axe + S:DragonstoneHoeName=Dragonstone Hoe + S:DragonstonePickName=Dragonstone Pickaxe + S:DragonstoneShovelName=Dragonstone Shovel + S:DragonstoneSwordName=Dragonstone Sword + S:FyritePickName=Fyrite Pickaxe + S:FyriteSwordName=Fyrite Sword + S:IllumeniteSwordName=Illumenite Sword + S:MalachiteAxeName=Malachite Axe + S:MalachiteHoeName=Malachite Hoe + S:MalachitePickName=Malachite Pickaxe + S:MalachiteShovelName=Malachite Shovel + S:MalachiteSwordName=Malachite Sword +} + + diff --git a/config/NetherrocksConfiguration/NetherrocksSettings.cfg b/config/NetherrocksConfiguration/NetherrocksSettings.cfg new file mode 100755 index 0000000..64fac93 --- /dev/null +++ b/config/NetherrocksConfiguration/NetherrocksSettings.cfg @@ -0,0 +1,58 @@ +# Configuration file + +#################### +# custom furnace +#################### + +"custom furnace" { + I:"Fyrite Ingot Burn Time"=8000 +} + + +#################### +# custom furnaces +#################### + +"custom furnaces" { + I:"Nether Furnace Speed Multiplier"=2 + I:"Netherrack Burn Time"=100 +} + + +#################### +# spawn rates +#################### + +"spawn rates" { + I:"Argonite Spawn Rate"=10 + I:"Ashstone Spawn Rate"=10 + I:"Dragonstone Spawn Rate"=6 + I:"Fyrite Spawn Rate"=10 + I:"Illumenite Spawn Rate"=350 + I:"Malachite Spawn Rate"=10 +} + + +#################### +# toggles +#################### + +toggles { + B:"Use Separate Creative Tabs?"=true +} + + +#################### +# vein sizes +#################### + +"vein sizes" { + I:"Argonite Vein Sizes"=6 + I:"Ashstone Vein Sizes"=5 + I:"Dragonstone Vein Sizes"=5 + I:"Fyrite Vein Sizes"=6 + I:"Illumenite Vein Sizes"=15 + I:"Malachite Vein Sizes"=7 +} + + diff --git a/config/ParachuteMod.cfg b/config/ParachuteMod.cfg new file mode 100755 index 0000000..9bcdb23 --- /dev/null +++ b/config/ParachuteMod.cfg @@ -0,0 +1,68 @@ +# Configuration file + +#################### +# general +#=================== +# Parachute Mod Config +# Michael Sheppard (crackedEgg) +#################### + +general { + # AADActive - whether the AAD is active or not. default is inactive. (false) + B:AADActive=false + + # AADAltitude - altitude (in meters) at which auto deploy occurs (10) + D:AADAltitude=15.0 + + # auto activation device ID - customize the AAD Item ID (2502) + I:aadID=2502 + + # allowThermals - true|false enable/disable thermals (true) + B:allowThermals=true + + # Color index numbers: + # black - 0 + # blue - 1 + # brown - 2 + # cyan - 3 + # gray - 4 + # green - 5 + # light blue - 6 + # lime - 7 + # magneta - 8 + # orange - 9 + # pink - 10 + # purple - 11 + # red - 12 + # silver - 13 + # white - 14 + # yellow - 15 + # blue/white - 16 + # red/white - 17 + # yellow/green - 18 + I:chuteColor=18 + + # fallThreshold - player must have fallen this far to activate AAD (5.0) + D:fallThreshold=5.0 + + # heightLimit - 0 (zero) disables altitude limiting (256) + I:heightLimit=256 + + # parachuteID - customize the Parachute Item ID (2500) + I:parachuteID=2500 + + # popID - customize the hop-n-pop Item ID (2503) + I:popID=2503 + + # ripcordID - customize the Ripcord Item ID (2501) + I:ripcordID=2501 + + # singleUse - set to true for hop n pop single use (false) + B:singleUse=false + + # smallCanopy - set to true to use the smaller 3 panel canopy, false for the + # larger 4 panel canopy (true) + B:smallCanopy=true +} + + diff --git a/config/Schematica.cfg b/config/Schematica.cfg new file mode 100755 index 0000000..88486ad --- /dev/null +++ b/config/Schematica.cfg @@ -0,0 +1,39 @@ +# Configuration file + +#################### +# general +#################### + +general { + # Alpha value used when rendering the schematic. [range: 0 ~ 255, default: 255] + I:alpha=255 + + # Enable transparent textures. [default: false] + B:alphaEnabled=false + + # Delta value used for highlighting (if you're having issue with overlapping textures try setting this value higher). [range: 0.0 ~ 0.5, default: 0.004999999888241291] + D:blockDelta=0.004999999888241291 + + # Draw outlines. [default: true] + B:drawLines=true + + # Draw surface areas. [default: true] + B:drawQuads=true + + # Highlight invalid placed blocks and to be placed blocks. [default: true] + B:highlight=true + + # Highlight invalid placed blocks (where there should be no block). [default: true] + B:highlightAir=true + + # Place blocks only if there is an adjacent block next to it. [default: true] + B:placeAdjacent=true + + # Delay in ticks between placement attempts. [range: 0 ~ 20, default: 1] + I:placeDelay=1 + + # Place all blocks that can be placed in one tick. [default: false] + B:placeInstantly=false +} + + diff --git a/config/SimpleOres Configuration/SimpleOresIDs.cfg b/config/SimpleOres Configuration/SimpleOresIDs.cfg new file mode 100755 index 0000000..eb8e9fd --- /dev/null +++ b/config/SimpleOres Configuration/SimpleOresIDs.cfg @@ -0,0 +1,140 @@ +# Configuration file + +#################### +# achievements +#################### + +achievements { + I:"Adamantium Achievement"=5001 + I:"Adamantium Pick Achievement"=5004 + I:"Iron Pick Achievement"=5003 + I:"Mythril Bow Achievement"=5006 + I:"Onyx Achievement"=5002 + I:"Onyx Bow Achievement"=5007 + I:"Onyx Pick Achievement"=5005 + I:"SimpleOres Achievement"=5000 +} + + +#################### +# armor +#################### + +armor { + I:"Adamantium Boots"=5215 + I:"Adamantium Chestplate"=5213 + I:"Adamantium Helmet"=5212 + I:"Adamantium Leggings"=5214 + I:"Copper Boots"=5203 + I:"Copper Chestplate"=5201 + I:"Copper Helmet"=5200 + I:"Copper Leggings"=5202 + I:"Mythril Boots"=5211 + I:"Mythril Chestplate"=5209 + I:"Mythril Helmet"=5208 + I:"Mythril Leggings"=5210 + I:"Onyx Boots"=5219 + I:"Onyx Chestplate"=5217 + I:"Onyx Helmet"=5216 + I:"Onyx Leggings"=5218 + I:"Tin Boots"=5207 + I:"Tin Chestplate"=5205 + I:"Tin Helmet"=5204 + I:"Tin Leggings"=5206 +} + + +#################### +# blocks +#################### + +blocks { + I:"Adamantium Bars"=4078 + I:"Adamantium Block"=497 + I:"Adamantium Ore"=496 + I:"Copper Bars"=4081 + I:"Copper Block"=491 + I:"Copper Door"=4083 + I:"Copper Ore"=490 + I:"Mythril Bars"=4079 + I:"Mythril Block"=495 + I:"Mythril Furnace"=4092 + I:"Mythril Furnace On"=4088 + I:"Mythril Ore"=494 + I:"Onyx Bars"=4077 + I:"Onyx Block"=499 + I:"Onyx Door"=4082 + I:"Onyx Furnace"=4087 + I:"Onyx Furnace On"=4086 + I:"Onyx Ore"=498 + I:"Tin Bars"=4080 + I:"Tin Block"=493 + I:"Tin Ore"=492 +} + + +#################### +# items +#################### + +items { + I:"Adamantium Ingot"=5003 + I:"Copper Bucket"=5008 + I:"Copper Bucket Water"=5009 + I:"Copper Door Item"=5023 + I:"Copper Ingot"=5000 + I:"Mythril Ingot"=5002 + I:"Mythril Rod"=5010 + I:"Onyx Door Item"=5024 + I:"Onyx Gem"=5004 + I:"Onyx Rod"=5011 + I:"Tin Ingot"=5001 +} + + +#################### +# tools +#################### + +tools { + I:"Adamantium Axe"=5116 + I:"Adamantium Hoe"=5119 + I:"Adamantium Pickaxe"=5115 + I:"Adamantium Shears"=5145 + I:"Adamantium Shovel"=5117 + I:"Copper Axe"=5101 + I:"Copper Hoe"=5104 + I:"Copper Pickaxe"=5100 + I:"Copper Shovel"=5102 + I:"Mythril Axe"=5111 + I:"Mythril Hoe"=5114 + I:"Mythril Pickaxe"=5110 + I:"Mythril Shovel"=5112 + I:"Onyx Axe"=5121 + I:"Onyx Hoe"=5124 + I:"Onyx Pickaxe"=5120 + I:"Onyx Shears"=5146 + I:"Onyx Shovel"=5122 + I:"Tin Axe"=5106 + I:"Tin Hoe"=5109 + I:"Tin Pickaxe"=5105 + I:"Tin Shears"=5144 + I:"Tin Shovel"=5107 +} + + +#################### +# weapons +#################### + +weapons { + I:"Adamantium Sword"=5118 + I:"Copper Sword"=5103 + I:"Mythril Bow"=5140 + I:"Mythril Sword"=5113 + I:"Onyx Bow"=5141 + I:"Onyx Sword"=5123 + I:"Tin Sword"=5108 +} + + diff --git a/config/SimpleOres Configuration/SimpleOresLocalisation.lang b/config/SimpleOres Configuration/SimpleOresLocalisation.lang new file mode 100755 index 0000000..8f03334 --- /dev/null +++ b/config/SimpleOres Configuration/SimpleOresLocalisation.lang @@ -0,0 +1,171 @@ +# Configuration file + +#################### +# achievement descriptions +#################### + +"achievement descriptions" { + S:AdamantiumAchievement=Dig deep to find some Adamantium. + S:AdamantiumPickAchievement=Make an Adamantium Pickaxe to dig faster than ever. + S:IronPickAchievement=Construct an Iron Pickaxe. + S:MythrilBowAchievement=Forge a new bow with magical properties. + S:OnyxAchievement=Good luck finding some. + S:OnyxBowAchievement=Scorch your enemies with this bow from the Hells. + S:OnyxPickAchievement=There's a good chance it will out-live you. + S:SimpleOresAchievement=Begin your SimpleOres adventure by collection some Copper. +} + + +#################### +# achievement names +#################### + +"achievement names" { + S:AdamantiumAchievement=The Green One + S:AdamantiumPickAchievement=Lighting Fast! + S:IronPickAchievement=Upgrade MK II + S:MythrilBowAchievement=Mystical Bow + S:OnyxAchievement=The Camouflaged Ore + S:OnyxBowAchievement=Firebug + S:OnyxPickAchievement=The Unbreakable + S:SimpleOresAchievement=Welcome to SimpleOres! +} + + +#################### +# armor names +#################### + +"armor names" { + S:AdamantiumBootsName=Adamantium Boots + S:AdamantiumChestName=Adamantium Chestplate + S:AdamantiumHelmName=Adamantium Helmet + S:AdamantiumLegsName=Adamantium Leggings + S:CopperBootsName=Copper Boots + S:CopperChestname=Copper Chestplate + S:CopperHelmName=Copper Helmet + S:CopperLegsName=Copper Leggings + S:MythrilBootsName=Mythril Boots + S:MythrilChestName=Mythril Chestplate + S:MythrilHelmName=Mythril Helmet + S:MythrilLegsName=Mythril Leggings + S:OnyxBootsName=Onyx Boots + S:OnyxChestName=Onyx Chestplate + S:OnyxHelmName=Onyx Helmet + S:OnyxLegsName=Onyx Leggings + S:TinBootsName=Tin Boots + S:TinChestname=Tin Chestplate + S:TinHelmName=Tin Helmet + S:TinLegsName=Tin Leggings +} + + +#################### +# block names +#################### + +"block names" { + S:AdamantiumBarsName=Adamantium Bars + S:AdamantiumBlockName=Adamantium Block + S:AdamantiumOreName=Adamantium Ore + S:CopperBarsName=Copper Bars + S:CopperBlockName=Copper Block + S:CopperDoorName=Copper Door + S:CopperOreName=Copper Ore + S:MythrilBarsName=Mythril Bars + S:MythrilBlockName=Mythril Block + S:MythrilFurnaceName=Mythril Furnace + S:MythrilFurnaceOnName=Mythril Furnace + S:MythrilOreName=Mythril Ore + S:OnyxBarsName=Onyx Bars + S:OnyxBlockName=Onyx Block + S:OnyxDoorName=Onyx Door + S:OnyxFurnaceName=Onyx Furnace + S:OnyxFurnaceOnName=Onyx Furnace + S:OnyxOreName=Onyx Ore + S:TinBarsName=Tin Bars + S:TinBlockName=Tin Block + S:TinOreName=Tin Ore +} + + +#################### +# bow tooltips +#################### + +"bow tooltips" { + S:DamageTooltip=+Damage + S:EfficiencyTooltip=+Efficiency + S:FlameTooltip=+Flame + S:KnockbackTooltip=+Knockback + S:ZoomTooltip=+Zoom +} + + +#################### +# item names +#################### + +"item names" { + S:AdamantiumIngotName=Adamantium Ingot + S:CopperBucketName=Copper Bucket + S:CopperBucketWaterName=Copper Bucket of Water + S:CopperDoorName=Copper Door + S:CopperIngotName=Copper Ingot + S:MythrilIngotName=Mythril Ingot + S:MythrilRodName=Mythril Rod + S:OnyxDoorName=Onyx Door + S:OnyxGemName=Onyx + S:OnyxRodName=Onyx Rod + S:SinisiteRodName=Sinisite Rod + S:ThyriumRodName=Thyrium Rod + S:TinIngotName=Tin Ingot +} + + +#################### +# tool names +#################### + +"tool names" { + S:AdamantiumAxeName=Adamantium Axe + S:AdamantiumHoeName=Adamantium Hoe + S:AdamantiumPickName=Adamantium Pickaxe + S:AdamantiumShearsName=Adamantium Shears + S:AdamantiumShovelName=Adamantium Shovel + S:CopperAxeName=Copper Axe + S:CopperHoeName=Copper Hoe + S:CopperPickName=Copper Pickaxe + S:CopperShovelName=Copper Shovel + S:MythrilAxeName=Mythril Axe + S:MythrilHoeName=Mythril Hoe + S:MythrilPickName=Mythril Pickaxe + S:MythrilShovelName=Mythril Shovel + S:OnyxAxeName=Onyx Axe + S:OnyxHoeName=Onyx Hoe + S:OnyxPickName=Onyx Pickaxe + S:OnyxShearsName=Onyx Shears + S:OnyxShovelName=Onyx Shovel + S:TinAxeName=Tin Axe + S:TinHoeName=Tin Hoe + S:TinPickName=Tin Pickaxe + S:TinShearsName=Tin Shears + S:TinShovelName=Tin Shovel +} + + +#################### +# weapon names +#################### + +"weapon names" { + S:AdamantiumSwordName=Adamantium Sword + S:CopperSwordName=Copper Sword + S:MythrilBowName=Mythril Bow + S:MythrilSwordName=Mythril Sword + S:OnyxBowName=Onyx Bow + S:OnyxSwordName=Onyx Sword + S:TinSwordName=Tin Sword +} + + diff --git a/config/SimpleOres Configuration/SimpleOresSettings.cfg b/config/SimpleOres Configuration/SimpleOresSettings.cfg new file mode 100755 index 0000000..82368af --- /dev/null +++ b/config/SimpleOres Configuration/SimpleOresSettings.cfg @@ -0,0 +1,73 @@ +# Configuration file + +#################### +# bow modifiers +#################### + +"bow modifiers" { + I:"Mythril Bow Damage Modifier"=2 + I:"Onyx Bow Damage Modifier"=5 +} + + +#################### +# custom furnaces +#################### + +"custom furnaces" { + I:"Mythril Furnace Fuel Length Multiplier"=2 + I:"Onyx Furnace Extra Yield Amount"=1 + I:"Onyx Furnace Multi Yield Chance (From 1 to 100)"=33 +} + + +#################### +# spawn heights +#################### + +"spawn heights" { + I:"Adamantium Spawn Height"=20 + I:"Copper Spawn Height"=90 + I:"Mythril Spawn Height"=35 + I:"Onyx Spawn Height"=256 + I:"Tin Spawn Height"=90 +} + + +#################### +# spawn rates +#################### + +"spawn rates" { + I:"Adamantium Spawn Rate"=4 + I:"Copper Spawn Rate"=35 + I:"Mythril Spawn Rate"=8 + I:"Onyx Spawn Rate"=5 + I:"Tin Spawn Rate"=30 +} + + +#################### +# toggles +#################### + +toggles { + B:"Enable Update Checker?"=true + B:"Use Old (Configurable) Localisation?"=false + B:"Use Separate Creative Tabs?"=true +} + + +#################### +# vein sizes +#################### + +"vein sizes" { + I:"Adamantium Vein Size"=4 + I:"Copper Vein Size"=7 + I:"Mythril Vein Size"=4 + I:"Onyx Vein Size"=7 + I:"Tin Vein Size"=7 +} + + diff --git a/config/SimpleOresConfiguration/SimpleOresIDs.cfg b/config/SimpleOresConfiguration/SimpleOresIDs.cfg new file mode 100755 index 0000000..5afe3e4 --- /dev/null +++ b/config/SimpleOresConfiguration/SimpleOresIDs.cfg @@ -0,0 +1,140 @@ +# Configuration file + +#################### +# achievements +#################### + +achievements { + I:"Adamantium Achievement"=5001 + I:"Adamantium Pick Achievement"=5004 + I:"Iron Pick Achievement"=5003 + I:"Mythril Bow Achievement"=5006 + I:"Onyx Achievement"=5002 + I:"Onyx Bow Achievement"=5007 + I:"Onyx Pick Achievement"=5005 + I:"SimpleOres Achievement"=5000 +} + + +#################### +# armor +#################### + +armor { + I:"Adamantium Boots"=5215 + I:"Adamantium Chestplate"=5213 + I:"Adamantium Helmet"=5212 + I:"Adamantium Leggings"=5214 + I:"Copper Boots"=5203 + I:"Copper Chestplate"=5201 + I:"Copper Helmet"=5200 + I:"Copper Leggings"=5202 + I:"Mythril Boots"=5211 + I:"Mythril Chestplate"=5209 + I:"Mythril Helmet"=5208 + I:"Mythril Leggings"=5210 + I:"Onyx Boots"=5219 + I:"Onyx Chestplate"=5217 + I:"Onyx Helmet"=5216 + I:"Onyx Leggings"=5218 + I:"Tin Boots"=5207 + I:"Tin Chestplate"=5205 + I:"Tin Helmet"=5204 + I:"Tin Leggings"=5206 +} + + +#################### +# blocks +#################### + +blocks { + I:"Adamantium Bars"=4078 + I:"Adamantium Block"=497 + I:"Adamantium Ore"=496 + I:"Copper Bars"=4081 + I:"Copper Block"=491 + I:"Copper Door"=4083 + I:"Copper Ore"=490 + I:"Mythril Bars"=4079 + I:"Mythril Block"=495 + I:"Mythril Furnace"=4092 + I:"Mythril Furnace On"=4088 + I:"Mythril Ore"=494 + I:"Onyx Bars"=4077 + I:"Onyx Block"=499 + I:"Onyx Door"=4082 + I:"Onyx Furnace"=4087 + I:"Onyx Furnace On"=4086 + I:"Onyx Ore"=498 + I:"Tin Bars"=4080 + I:"Tin Block"=493 + I:"Tin Ore"=492 +} + + +#################### +# items +#################### + +items { + I:"Adamantium Ingot"=5003 + I:"Copper Bucket"=5008 + I:"Copper Bucket Water"=5009 + I:"Copper Door Item"=5023 + I:"Copper Ingot"=5000 + I:"Mythril Ingot"=5002 + I:"Mythril Rod"=5010 + I:"Onyx Door Item"=5024 + I:"Onyx Gem"=5004 + I:"Onyx Rod"=5011 + I:"Tin Ingot"=5001 +} + + +#################### +# tools +#################### + +tools { + I:"Adamantium Axe"=5116 + I:"Adamantium Hoe"=5119 + I:"Adamantium Pickaxe"=5115 + I:"Adamantium Shears"=5145 + I:"Adamantium Shovel"=5117 + I:"Copper Axe"=5101 + I:"Copper Hoe"=5104 + I:"Copper Pickaxe"=5100 + I:"Copper Shovel"=5102 + I:"Mythril Axe"=5111 + I:"Mythril Hoe"=5114 + I:"Mythril Pickaxe"=5110 + I:"Mythril Shovel"=5112 + I:"Onyx Axe"=5121 + I:"Onyx Hoe"=5124 + I:"Onyx Pickaxe"=5120 + I:"Onyx Shears"=5146 + I:"Onyx Shovel"=5122 + I:"Tin Axe"=5106 + I:"Tin Hoe"=5109 + I:"Tin Pickaxe"=5105 + I:"Tin Shears"=5144 + I:"Tin Shovel"=5107 +} + + +#################### +# weapons +#################### + +weapons { + I:"Adamantium Sword"=5118 + I:"Copper Sword"=5103 + I:"Mythril Bow"=5140 + I:"Mythril Sword"=5113 + I:"Onyx Bow"=5141 + I:"Onyx Sword"=5123 + I:"Tin Sword"=5108 +} + + diff --git a/config/SimpleOresConfiguration/SimpleOresLocalisation.lang b/config/SimpleOresConfiguration/SimpleOresLocalisation.lang new file mode 100755 index 0000000..c2172f9 --- /dev/null +++ b/config/SimpleOresConfiguration/SimpleOresLocalisation.lang @@ -0,0 +1,171 @@ +# Configuration file + +#################### +# achievement descriptions +#################### + +"achievement descriptions" { + S:AdamantiumAchievement=Dig deep to find some Adamantium. + S:AdamantiumPickAchievement=Make an Adamantium Pickaxe to dig faster than ever. + S:IronPickAchievement=Construct an Iron Pickaxe. + S:MythrilBowAchievement=Forge a new bow with magical properties. + S:OnyxAchievement=Good luck finding some. + S:OnyxBowAchievement=Scorch your enemies with this bow from the Hells. + S:OnyxPickAchievement=There's a good chance it will out-live you. + S:SimpleOresAchievement=Begin your SimpleOres adventure by collection some Copper. +} + + +#################### +# achievement names +#################### + +"achievement names" { + S:AdamantiumAchievement=The Green One + S:AdamantiumPickAchievement=Lighting Fast! + S:IronPickAchievement=Upgrade MK II + S:MythrilBowAchievement=Mystical Bow + S:OnyxAchievement=The Camouflaged Ore + S:OnyxBowAchievement=Firebug + S:OnyxPickAchievement=The Unbreakable + S:SimpleOresAchievement=Welcome to SimpleOres! +} + + +#################### +# armor names +#################### + +"armor names" { + S:AdamantiumBootsName=Adamantium Boots + S:AdamantiumChestName=Adamantium Chestplate + S:AdamantiumHelmName=Adamantium Helmet + S:AdamantiumLegsName=Adamantium Leggings + S:CopperBootsName=Copper Boots + S:CopperChestname=Copper Chestplate + S:CopperHelmName=Copper Helmet + S:CopperLegsName=Copper Leggings + S:MythrilBootsName=Mythril Boots + S:MythrilChestName=Mythril Chestplate + S:MythrilHelmName=Mythril Helmet + S:MythrilLegsName=Mythril Leggings + S:OnyxBootsName=Onyx Boots + S:OnyxChestName=Onyx Chestplate + S:OnyxHelmName=Onyx Helmet + S:OnyxLegsName=Onyx Leggings + S:TinBootsName=Tin Boots + S:TinChestname=Tin Chestplate + S:TinHelmName=Tin Helmet + S:TinLegsName=Tin Leggings +} + + +#################### +# block names +#################### + +"block names" { + S:AdamantiumBarsName=Adamantium Bars + S:AdamantiumBlockName=Adamantium Block + S:AdamantiumOreName=Adamantium Ore + S:CopperBarsName=Copper Bars + S:CopperBlockName=Copper Block + S:CopperDoorName=Copper Door + S:CopperOreName=Copper Ore + S:MythrilBarsName=Mythril Bars + S:MythrilBlockName=Mythril Block + S:MythrilFurnaceName=Mythril Furnace + S:MythrilFurnaceOnName=Mythril Furnace + S:MythrilOreName=Mythril Ore + S:OnyxBarsName=Onyx Bars + S:OnyxBlockName=Onyx Block + S:OnyxDoorName=Onyx Door + S:OnyxFurnaceName=Onyx Furnace + S:OnyxFurnaceOnName=Onyx Furnace + S:OnyxOreName=Onyx Ore + S:TinBarsName=Tin Bars + S:TinBlockName=Tin Block + S:TinOreName=Tin Ore +} + + +#################### +# bow tooltips +#################### + +"bow tooltips" { + S:DamageTooltip=+Damage + S:EfficiencyTooltip=+Efficiency + S:FlameTooltip=+Flame + S:KnockbackTooltip=+Knockback + S:ZoomTooltip=+Zoom +} + + +#################### +# item names +#################### + +"item names" { + S:AdamantiumIngotName=Adamantium Ingot + S:CopperBucketName=Copper Bucket + S:CopperBucketWaterName=Copper Bucket of Water + S:CopperDoorName=Copper Door + S:CopperIngotName=Copper Ingot + S:MythrilIngotName=Mythril Ingot + S:MythrilRodName=Mythril Rod + S:OnyxDoorName=Onyx Door + S:OnyxGemName=Onyx + S:OnyxRodName=Onyx Rod + S:SinisiteRodName=Sinisite Rod + S:ThyriumRodName=Thyrium Rod + S:TinIngotName=Tin Ingot +} + + +#################### +# tool names +#################### + +"tool names" { + S:AdamantiumAxeName=Adamantium Axe + S:AdamantiumHoeName=Adamantium Hoe + S:AdamantiumPickName=Adamantium Pickaxe + S:AdamantiumShearsName=Adamantium Shears + S:AdamantiumShovelName=Adamantium Shovel + S:CopperAxeName=Copper Axe + S:CopperHoeName=Copper Hoe + S:CopperPickName=Copper Pickaxe + S:CopperShovelName=Copper Shovel + S:MythrilAxeName=Mythril Axe + S:MythrilHoeName=Mythril Hoe + S:MythrilPickName=Mythril Pickaxe + S:MythrilShovelName=Mythril Shovel + S:OnyxAxeName=Onyx Axe + S:OnyxHoeName=Onyx Hoe + S:OnyxPickName=Onyx Pickaxe + S:OnyxShearsName=Onyx Shears + S:OnyxShovelName=Onyx Shovel + S:TinAxeName=Tin Axe + S:TinHoeName=Tin Hoe + S:TinPickName=Tin Pickaxe + S:TinShearsName=Tin Shears + S:TinShovelName=Tin Shovel +} + + +#################### +# weapon names +#################### + +"weapon names" { + S:AdamantiumSwordName=Adamantium Sword + S:CopperSwordName=Copper Sword + S:MythrilBowName=Mythril Bow + S:MythrilSwordName=Mythril Sword + S:OnyxBowName=Onyx Bow + S:OnyxSwordName=Onyx Sword + S:TinSwordName=Tin Sword +} + + diff --git a/config/SimpleOresConfiguration/SimpleOresSettings.cfg b/config/SimpleOresConfiguration/SimpleOresSettings.cfg new file mode 100755 index 0000000..f8c3a44 --- /dev/null +++ b/config/SimpleOresConfiguration/SimpleOresSettings.cfg @@ -0,0 +1,73 @@ +# Configuration file + +#################### +# bow modifiers +#################### + +"bow modifiers" { + I:"Mythril Bow Damage Modifier"=2 + I:"Onyx Bow Damage Modifier"=5 +} + + +#################### +# custom furnaces +#################### + +"custom furnaces" { + I:"Mythril Furnace Fuel Length Multiplier"=2 + I:"Onyx Furnace Extra Yield Amount"=1 + I:"Onyx Furnace Multi Yield Chance (From 1 to 100)"=33 +} + + +#################### +# spawn heights +#################### + +"spawn heights" { + I:"Adamantium Spawn Height"=20 + I:"Copper Spawn Height"=90 + I:"Mythril Spawn Height"=35 + I:"Onyx Spawn Height"=256 + I:"Tin Spawn Height"=90 +} + + +#################### +# spawn rates +#################### + +"spawn rates" { + I:"Adamantium Spawn Rate"=4 + I:"Copper Spawn Rate"=35 + I:"Mythril Spawn Rate"=8 + I:"Onyx Spawn Rate"=5 + I:"Tin Spawn Rate"=30 +} + + +#################### +# toggles +#################### + +toggles { + B:"Enable Update Checker?"=true + B:"Use Old (Configurable) Localisation?"=false + B:"Use Separate Creative Tabs?"=true +} + + +#################### +# vein sizes +#################### + +"vein sizes" { + I:"Adamantium Vein Size"=4 + I:"Copper Vein Size"=7 + I:"Mythril Vein Size"=4 + I:"Onyx Vein Size"=7 + I:"Tin Vein Size"=7 +} + + diff --git a/config/TLSpecialArmor.cfg b/config/TLSpecialArmor.cfg new file mode 100755 index 0000000..b41fab4 --- /dev/null +++ b/config/TLSpecialArmor.cfg @@ -0,0 +1,40 @@ +# Configuration file + +#################### +# item +#################### + +item { + I:capeID=10680 + I:chainID=10691 + I:cookedPorkBootsID=10708 + I:cookedPorkHelmetID=10705 + I:cookedPorkLegsID=10707 + I:cookedPorkPlateID=10706 + I:dispenserPlateID=10709 + I:divingHelmetID=10682 + I:doubleJumpBootsID=10704 + I:firePlateID=10683 + I:flowerPlateID=10702 + I:heavyBootsID=10684 + I:hoverBootsID=10689 + I:jetpackID=10694 + I:jetpackMiddleID=10696 + I:jumpBootsID=10685 + I:magicBootsID=10687 + I:magicSubstanceID=10688 + I:obsidianPlateID=10690 + I:porkBootsID=10700 + I:porkHelmetID=10697 + I:porkLegsID=10699 + I:porkPlateID=10698 + I:rocketID=10695 + I:skatesID=10701 + I:slimeHelmetID=10692 + I:speedLegsID=10681 + I:springID=10686 + I:timeHelmetID=10703 + I:tntPlateID=10693 +} + + diff --git a/config/UniversalElectricity.cfg b/config/UniversalElectricity.cfg new file mode 100755 index 0000000..03378ca --- /dev/null +++ b/config/UniversalElectricity.cfg @@ -0,0 +1,16 @@ +# Configuration file + +#################### +# compatibility +#################### + +compatibility { + D:"BuildCraft Conversion Ratio"=56280.0 + D:"IndustrialCraft Conversion Ratio"=22512.0 + B:"Load BuildCraft Module"=true + B:"Load IndustrialCraft Module"=true + B:"Load ThermalExpansion Module"=true + D:"Thermal Expansion Conversion Ratio"=5628.0 +} + + diff --git a/config/WesterosBlocks.cfg b/config/WesterosBlocks.cfg new file mode 100644 index 0000000..ff0211b --- /dev/null +++ b/config/WesterosBlocks.cfg @@ -0,0 +1,230 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:arrow_slits=2024 + I:arrow_slits_0=2024 + I:arrow_slits_1=2162 + I:banner_block_0=2070 + I:banner_block_1=2094 + I:banner_block_10=2103 + I:banner_block_11=2104 + I:banner_block_12=2105 + I:banner_block_13=2106 + I:banner_block_14=2183 + I:banner_block_15=4008 + I:banner_block_16=4009 + I:banner_block_17=4010 + I:banner_block_18=4011 + I:banner_block_19=4012 + I:banner_block_2=2095 + I:banner_block_20=4013 + I:banner_block_21=4014 + I:banner_block_22=4015 + I:banner_block_23=4016 + I:banner_block_24=4017 + I:banner_block_25=4018 + I:banner_block_3=2096 + I:banner_block_4=2097 + I:banner_block_5=2098 + I:banner_block_6=2099 + I:banner_block_7=2100 + I:banner_block_8=2101 + I:banner_block_9=2102 + I:bars_iron_block_0=2011 + I:bed_block_0=2081 + I:bed_block_1=2082 + I:bed_block_2=2083 + I:bed_block_3=2084 + I:bed_block_4=2085 + I:bed_block_5=2086 + I:bed_block_6=2087 + I:bed_block_7=2088 + I:bed_block_8=2089 + I:bedrock_stairs=2117 + I:bench_block_0=2023 + I:bookshelves_block_0=2028 + I:brown_mushroom_block_0=2061 + I:cobble_dark_stairs=2118 + I:crate_block_0=2018 + I:crate_block_1=2168 + I:crop_block_1=2182 + I:cuboid_block_0=2013 + I:cuboid_block_1=2064 + I:cuboid_block_2=2065 + I:cuboid_block_3=2066 + I:cuboid_block_4=2161 + I:cuboid_block_5=2180 + I:cuboid_nsewud_block_0=2069 + I:cuboid_nsewud_block_1=2122 + I:cuboid_nsewud_block_2=2166 + I:daub_wattle_block_0=2031 + I:dead_bush_block_0=2156 + I:door_secret_sandstone_red=2191 + I:door_spruce=2140 + I:door_weirwood=2170 + I:dornish_pane_0=2144 + I:fence_block_0=2009 + I:fence_block_1=2052 + I:fence_block_2=2131 + I:fire_block_0=2121 + I:forest_block_0=2205 + I:furnace_block_0=2132 + I:furnace_block_1=2133 + I:furnace_block_2=2134 + I:furnace_block_3=2167 + I:glasspane_net=2057 + I:halfdoor_block_0=2055 + I:halfdoor_block_1=2056 + I:halfdoor_block_2=2090 + I:halfdoor_block_3=2145 + I:halfdoor_block_4=2146 + I:hopper_block_0=2067 + I:hopper_block_1=2068 + I:hopper_block_2=2154 + I:ladder_block_0=2019 + I:ladder_block_1=2160 + I:leaves_block_0=2016 + I:leaves_block_1=2017 + I:leaves_block_2=2077 + I:leaves_block_3=2221 + I:leaves_block_4=1295 + I:light_emitting_blocks_0=2032 + I:log_block_0=2004 + I:log_block_1=2027 + I:log_block_2=2058 + I:log_block_3=2076 + I:log_block_4=2093 + I:log_block_5=2148 + I:metal_block_0=2000 + I:metal_block_0_stair_1=2003 + I:metal_block_0_stair_2=2107 + I:metal_block_0_stair_3=2108 + I:metal_block_0_stair_4=2109 + I:metal_block_0_stair_5=2110 + I:metal_block_0_stair_6=2111 + I:metal_block_0_stair_7=2112 + I:metal_block_0_stair_8=2190 + I:metal_slab_block_0=2008 + I:metal_slab_block_0_2=2020 + I:northern_wood_stairs=2114 + I:orange_brick_stair_0=2092 + I:piston_block_0=2069 + I:piston_block_1=2122 + I:rail_block_0=2080 + I:rail_block_1=2125 + I:random_slab_block_0=2047 + I:random_slab_block_0_2=2048 + I:random_slab_block_1=2078 + I:random_slab_block_1_2=2079 + I:random_slab_block_2=2176 + I:random_slab_block_2_2=2177 + I:random_slab_block_3=2178 + I:random_slab_block_3_2=2179 + I:red_flower_block_0=2059 + I:red_flower_block_1=2060 + I:red_mushroom_block_0=2062 + I:rope_block_1=2091 + I:rope_block_2=2119 + I:sand_block_0=2012 + I:sand_layer_0=2021 + I:sand_layer_1=2141 + I:sand_layer_2=2142 + I:sand_layer_3=2143 + I:sandstone_block_0_stair_0=2015 + I:sandstone_block_0_stair_1=2035 + I:sandstone_block_0_stair_2=2036 + I:sandstone_block_0_stair_3=2037 + I:sandstone_block_0_stair_4=2038 + I:sandstone_block_0_stair_5=2039 + I:sandstone_block_0_stair_8=2040 + I:six_sided_blocks_0=2026 + I:snow_stairs=2113 + I:solid_blocks_0=2033 + I:solid_blocks_1=2149 + I:soulsand_like_blocks_0=2034 + I:sound_blocks_0=2072 + I:sound_blocks_1=2172 + I:sound_blocks_2=2173 + I:sound_blocks_3=2174 + I:stained_glass_0=2188 + I:stained_glass_pane_0=2189 + I:stone_block_0=2025 + I:stone_block_1=2029 + I:stone_block_1_stair_0=2043 + I:stone_block_1_stair_1=2044 + I:stone_block_1_stair_2=2049 + I:stone_block_1_stair_3=2050 + I:stone_block_1_stair_4=2051 + I:stone_block_2=2071 + I:stone_block_3=2126 + I:stone_block_3_stair_0=2129 + I:stone_block_3_stair_1=2130 + I:stone_block_3_stair_2=2135 + I:stone_block_3_stair_3=2147 + I:stone_block_3_stair_4=2151 + I:stone_block_3_stair_5=2152 + I:stone_block_3_stair_6=2153 + I:stone_block_4=2157 + I:stone_block_4_stair_0=2159 + I:stone_block_4_stair_1=2165 + I:stone_block_4_stair_2=2169 + I:stone_block_4_stair_3=2198 + I:stone_block_4_stair_4=2111 + I:stone_block_5=2184 + I:stone_block_5_stair_0=2181 + I:stone_block_5_stair_1=2199 + I:stone_block_5_stair_2=2200 + I:stone_block_5_stair_3=2201 + I:stone_cuboid_block_0=2161 + I:stone_slab_block_0=2041 + I:stone_slab_block_0_2=2042 + I:stone_slab_block_1=2045 + I:stone_slab_block_1_2=2046 + I:stone_slab_block_2=2127 + I:stone_slab_block_2_2=2128 + I:stone_slab_block_3=2163 + I:stone_slab_block_3_2=2164 + I:stone_slab_stair_0=2075 + I:stone_wall_block_0=2010 + I:stone_wall_block_1=2120 + I:stone_wall_block_2=2150 + I:thatch_stair_0=2073 + I:thatch_stair_1=2074 + I:thin_log_0=2022 + I:torch_block_0=2014 + I:translucent_fence_block_0=2186 + I:translucent_wall_block_0=2185 + I:translucent_web_block_0=2187 + I:translucent_web_block_1=2192 + I:unshaded_grass_block_0=2063 + I:utility_block_0=2158 + I:web_block_0=2053 + I:web_block_1=2155 + I:web_block_2=2175 + I:wood_colours=2030 + I:wood_slab_block_0=2115 + I:wood_slab_block_0_2=2116 + I:wool_slab_block_0=2136 + I:wool_slab_block_0_2=2137 + I:wool_slab_block_1=2138 + I:wool_slab_block_1_2=2139 + I:yellow_flower_block_0=2005 + I:yellow_flower_block_1=2006 +} + + +#################### +# settings +#################### + +settings { + B:useFixedPressurePlate=true + B:useFixedStairs=true + B:useWaterCTMFix=true +} + + diff --git a/config/bspkrsCore.cfg b/config/bspkrsCore.cfg new file mode 100755 index 0000000..6f8d23f --- /dev/null +++ b/config/bspkrsCore.cfg @@ -0,0 +1,14 @@ +# Configuration file + +general { + # [default: false] + B:allowDebugOutput=false + + # Set to true to allow checking for updates for ALL of my mods, false to disable [default: true] + B:allowUpdateCheck=false + + # The timeout in milliseconds for the version update check. [range: 100 ~ 30000, default: 3000] + I:updateTimeoutMilliseconds=3000 +} + + diff --git a/config/bspkrs_ModVersionCheckerTracking.txt b/config/bspkrs_ModVersionCheckerTracking.txt new file mode 100755 index 0000000..b183081 --- /dev/null +++ b/config/bspkrs_ModVersionCheckerTracking.txt @@ -0,0 +1,8 @@ +# Configuration file + +version_check_tracker { + S:ArmorStatusHUD= + S:bspkrsCore= +} + + diff --git a/config/forge.cfg b/config/forge.cfg new file mode 100644 index 0000000..e69b5ca --- /dev/null +++ b/config/forge.cfg @@ -0,0 +1,44 @@ +# Configuration file + +#################### +# general +#################### + +general { + I:"Allow Forge to set up log4j on it's own"=0 + + # Control the range of sky blending for colored skies in biomes. + I:biomeSkyBlendRange < + 20 + 15 + 10 + 5 + > + + # Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024 + I:clumpingThreshold=64 + B:enableGlobalConfig=false + + # Set this to force a crash if more than one block attempts to link back to the same Fluid. Enabled by default. + B:forceDuplicateFluidBlockCrash=true + + # Set this to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticable differences in mechanics so default is vanilla behavior. Default: false + B:fullBoundingBoxLadders=false + + # Set this to just remove any TileEntity that throws a error in there update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + B:removeErroringEntities=false + + # Set this to just remove any TileEntity that throws a error in there update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + B:removeErroringTileEntities=false + + # Set to true to enable the post initlization sorting of crafting recipes using Froge's sorter. May cause desyncing on conflicting recipies. ToDo: Set to true by default in 1.7 + B:sortRecipies=false + + # Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic. + D:zombieBabyChance=0.05 + + # Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic. + D:zombieBaseSummonChance=0.1 +} + + diff --git a/config/forgeChunkLoading.cfg b/config/forgeChunkLoading.cfg new file mode 100644 index 0000000..1604bd6 --- /dev/null +++ b/config/forgeChunkLoading.cfg @@ -0,0 +1,47 @@ +# Configuration file + +#################### +# Forge +#=================== +# Sample mod specific control section. +# Copy this section and rename the with the modid for the mod you wish to override. +# A value of zero in either entry effectively disables any chunkloading capabilities +# for that mod +#################### + +Forge { + # Maximum chunks per ticket for the mod. + I:maximumChunksPerTicket=25 + + # Maximum ticket count for the mod. Zero disables chunkloading capabilities. + I:maximumTicketCount=200 +} + + +#################### +# defaults +#=================== +# Default configuration for forge chunk loading control +#################### + +defaults { + # Unloaded chunks can first be kept in a dormant cache for quicker + # loading times. Specify the size (in chunks) of that cache here + I:dormantChunkCacheSize=0 + + # Are mod overrides enabled? + B:enabled=true + + # The default maximum number of chunks a mod can force, per ticket, + # for a mod without an override. This is the maximum number of chunks a single ticket can force. + I:maximumChunksPerTicket=25 + + # The default maximum ticket count for a mod which does not have an override + # in this file. This is the number of chunk loading requests a mod is allowed to make. + I:maximumTicketCount=200 + + # The number of tickets a player can be assigned instead of a mod. This is shared across all mods and it is up to the mods to use it. + I:playerTicketCount=500 +} + + diff --git a/config/gvc/config.properties b/config/gvc/config.properties new file mode 100755 index 0000000..fd22d41 --- /dev/null +++ b/config/gvc/config.properties @@ -0,0 +1,13 @@ +#Properties for Voice Chat Mod for Forge, VERSION: 0.4.0 +#Fri Jan 23 17:45:51 CET 2026 +enc_mode=0 +enc_ench=true +debug_enabled=false +speak_mode=0 +muted_players= +enc_quality=1.0 +mic_name=alsa_playback.java [default] +is_voice_enable=true +world_volume=1.0 +ui_opa=1.0 +save-version=0.4.0 diff --git a/config/logging.properties b/config/logging.properties new file mode 100644 index 0000000..0e67085 --- /dev/null +++ b/config/logging.properties @@ -0,0 +1,19 @@ +handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler +.level=WARNING + +java.util.logging.FileHandler.level=FINEST +java.util.logging.FileHandler.pattern=%h/server.log +java.util.logging.FileHandler.limit=1000000 +java.util.logging.FileHandler.count=1 +java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter + +java.util.logging.ConsoleHandler.level=WARNING +java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter + +java.util.logging.SimpleFormatter.format=[%1$tH:%1$tM:%1$tS] %4$s: %5$s%6$s%n + +# Disable verbose Forge logging +net.minecraftforge.level=SEVERE +cpw.mods.level=SEVERE +net.minecraftforge.client.level=SEVERE +net.minecraft.level=SEVERE diff --git a/config/modstats.cfg b/config/modstats.cfg new file mode 100755 index 0000000..88c342c --- /dev/null +++ b/config/modstats.cfg @@ -0,0 +1,23 @@ +# Configuration file + +#################### +# updates +#################### + +updates { + # Allow to send current mod versions to the server and check for updates. + # It allows to mod authors to see mod's popularity. Please don't disable it without necessity + B:AllowUpdates=false + + # Set true to receive notifications about beta versions. Otherwise you will only receive information about stable versions + B:BetaNotifications=false + + # Check for updates only for current MC version. + # Ex:if you have MC 1.4.2 and ForCurrentMinecraftVersion is true, then you wouldn't receive notifications about versions for MC 1.4.5 + B:ForCurrentMinecraftVersion=false + + # Don't display chat message, just add message to the log. + B:LogOnly=false +} + + diff --git a/config/nationsgui-client.json b/config/nationsgui-client.json new file mode 100755 index 0000000..505a197 --- /dev/null +++ b/config/nationsgui-client.json @@ -0,0 +1 @@ +{"specialEnabled":true,"blockInfoEnabled":false,"displayPictureFrame":true,"displayObjectives":true,"vanillaLifeDisplay":false,"damageIndicator":true,"displayArmorInInfo":true,"displayNotifications":true,"enableUnicode":false,"enableTimestamp":false,"enableTag":true,"currentServerTime":1592340894227,"TPToTutorial":false,"FirstSetupClient":false,"renderHat":true} \ No newline at end of file diff --git a/config/nationsgui.cfg b/config/nationsgui.cfg new file mode 100755 index 0000000..544a644 --- /dev/null +++ b/config/nationsgui.cfg @@ -0,0 +1,46 @@ +# Configuration file + +#################### +# incubator +#################### + +incubator { + I:"Block ID"=3333 + + # Coal block rate per second + I:"Coal Rate"=4 + + # The amount of entity spawn per minute + I:"Spawn Rate"=12 +} + + +#################### +# repair machine +#################### + +"repair machine" { + # List of blacklisted item IDs + S:Blacklist < + > + I:"Block ID"=3334 + + # Coal block rate per second + I:"Coal Rate"=2 + + # Repair rate per second + I:"Repair Rate"=2 +} + + +#################### +# spawner +#################### + +spawner { + # List of blacklisted entity IDs + I:Blacklist < + > +} + + diff --git a/config/nationsgui.json b/config/nationsgui.json new file mode 100755 index 0000000..fa183a4 --- /dev/null +++ b/config/nationsgui.json @@ -0,0 +1 @@ +{"serverName":"","multipleRespawn":false,"playerListTopText":"","playerListBottomText":"","clickLimit":25,"serverType":"ng"} \ No newline at end of file diff --git a/config/nationsmachine.cfg b/config/nationsmachine.cfg new file mode 100755 index 0000000..663b147 --- /dev/null +++ b/config/nationsmachine.cfg @@ -0,0 +1,66 @@ +# Configuration file + +#################### +# incubator +#################### + +incubator { + I:"Block ID"=3333 + + # Coal block rate per second + I:"Coal Rate"=1 + + # The amount of entity spawn per minute + I:"Spawn Rate"=5 +} + + +#################### +# repair machine +#################### + +"repair machine" { + # List of blacklisted item IDs + S:Blacklist < + 19488 + 19487 + 23800 + 23802 + 23804 + 23806 + 23808 + 23810 + 23812 + 23814 + 23816 + 23818 + 23820 + 23822 + 23824 + 23826 + 23828 + 23820 + 23832 + 23834 + 23836 + 23838 + 23840 + 23842 + 23844 + 23846 + 23849 + 23863 + 23864 + 10135 + 23856 + > + I:"Block ID"=3334 + + # Coal block rate per second + I:"Coal Rate"=2 + + # Repair rate per second + I:"Repair Rate"=2 +} + + diff --git a/config/ngcontent.cfg b/config/ngcontent.cfg new file mode 100755 index 0000000..60d3a04 --- /dev/null +++ b/config/ngcontent.cfg @@ -0,0 +1,20 @@ +# Configuration file + +#################### +# eco +#################### + +eco { + I:ecoItem=3588 +} + + +#################### +# tiber +#################### + +tiber { + I:"Chance to drop on meteor"=10 +} + + diff --git a/config/ngcore.cfg b/config/ngcore.cfg new file mode 100755 index 0000000..537c8f5 --- /dev/null +++ b/config/ngcore.cfg @@ -0,0 +1,37 @@ +# Configuration file + +#################### +# api +#################### + +api { + # API timeout in milliseconds + I:apiTimeout=30000 + + # Environment: prod or beta + S:environment=prod + + # Base URL of NGAPI server + S:ngapiBaseUrl=https://ngconfigapi-backend-production.up.railway.app +} + + +#################### +# cache +#################### + +cache { + # Directory to cache downloaded resources + S:cacheDir=ngcore_cache + + # Enable loading blocks from API + B:loadBlocks=true + + # Enable loading entities from API (not yet implemented) + B:loadEntities=false + + # Enable loading items from API (not yet implemented) + B:loadItems=false +} + + diff --git a/config/ngelectricity.cfg b/config/ngelectricity.cfg new file mode 100755 index 0000000..9d7fef5 --- /dev/null +++ b/config/ngelectricity.cfg @@ -0,0 +1,506 @@ +# Configuration file + +#################### +# alarm +#################### + +alarm { + I:"Block ID"=3573 +} + + +#################### +# converter +#################### + +converter { + I:"Block ID"=3588 +} + + +#################### +# crystal +#################### + +crystal { + I:"Chance to drop on meteor"=10 +} + + +#################### +# customwire +#################### + +customwire { + I:"Block ID"=3579 +} + + +#################### +# ecotron +#################### + +ecotron { + I:"Block ID"=3576 + I:"Transformation Rat"=2 + + # Transform rate per second + I:"Transformation Rate"=2 + + # List of whitelisted item IDs + S:Whitelist < + 1830 + 1831 + 1832 + 1833 + 1834 + 1835 + 1836 + 1837 + 1838 + 1839 + 1840 + 1841 + 1842 + 1843 + 1844 + 1845 + 1846 + 1847 + 1848 + 1849 + 1850 + 1851 + 1852 + 1853 + 1854 + 1855 + 1856 + 1857 + 1860 + 1861 + 1862 + 1863 + 1864 + 1865 + 1866 + 3679 + 3680 + 3681 + 3682 + 3683 + 3685 + 3686 + 3687 + 3689 + 3690 + 3707 + 3708 + 3709 + 3710 + 3711 + 3712 + 3713 + 3714 + 3715 + 3716 + 3717 + 3718 + 3719 + 3720 + 3721 + 3722 + 3723 + 3737 + 3748 + 3856 + 3857 + 3858 + 3859 + 3860 + 3861 + 3862 + 3863 + 11056 + 11057 + 11058 + 11059 + 11064 + 11065 + 11066 + 11067 + 11090 + 11091 + 11092 + 11093 + 11094 + 11095 + 11096 + 11097 + 11060 + 11061 + 11062 + 11063 + 5376 + 5377 + 5378 + 5379 + 5380 + 5397 + 5472 + 5473 + 5474 + 5475 + 6286 + 6287 + 6288 + 6289 + 6290 + 6318 + 6319 + 6320 + 6321 + 10163 + 10164 + 10165 + 10166 + 10167 + 10168 + 10169 + 10170 + 10171 + 10141 + 10142 + 10143 + 10144 + 10145 + 10146 + 10147 + 10148 + 10149 + > +} + + +#################### +# fishfeeder +#################### + +fishfeeder { + # Seconds between 2 spawn of entity + I:"Spawn Interval"=20 +} + + +#################### +# incinerator +#################### + +incinerator { + # List of blacklisted item IDs + S:Blacklist < + 2780 + 2789 + 2784 + 24 + 12 + 2 + 3 + 2839 + > + I:"Block ID"=3570 +} + + +#################### +# incubator +#################### + +incubator { + I:"Block ID"=3572 + + # The amount of entity spawn per minute + I:"Spawn Rate"=5 +} + + +#################### +# inverter +#################### + +inverter { + I:"Block ID"=3589 +} + + +#################### +# lightmedieval +#################### + +lightmedieval { + I:"Block ID"=3584 +} + + +#################### +# lightmedievaloff +#################### + +lightmedievaloff { + I:"Block ID"=3584 +} + + +#################### +# lightmedievalon +#################### + +lightmedievalon { + I:"Block ID"=3585 +} + + +#################### +# lightmodern +#################### + +lightmodern { + I:"Block ID"=3585 +} + + +#################### +# lightmodernoff +#################### + +lightmodernoff { + I:"Block ID"=3586 +} + + +#################### +# lightmodernon +#################### + +lightmodernon { + I:"Block ID"=3587 +} + + +#################### +# meter +#################### + +meter { + I:"Block ID"=3571 +} + + +#################### +# ocean_collector +#################### + +ocean_collector { + I:"Chance to collect a clay on a sand block"=50 +} + + +#################### +# oilgenerator +#################### + +oilgenerator { + # Transform rate per second + I:"Transformation Rate"=4 +} + + +#################### +# oilpump +#################### + +oilpump { + # Fill rate per second + I:"Fill Rate"=2 +} + + +#################### +# pump +#################### + +pump { + I:"Block ID"=3578 + I:"Salt Interval Second"=30 +} + + +#################### +# repair +#################### + +repair { + # List of blacklisted item IDs + S:Blacklist < + 19488 + 19487 + 23800 + 23802 + 23804 + 23806 + 23808 + 23810 + 23812 + 23814 + 23816 + 23818 + 23820 + 23822 + 23824 + 23826 + 23828 + 23820 + 23832 + 23834 + 23836 + 23838 + 23840 + 23842 + 23844 + 23846 + 23849 + 23863 + 23864 + 10135 + 23856 + 11076 + > + I:"Block ID"=3575 + + # Repair rate per second + I:"Repair Rate"=2 +} + + +#################### +# roller +#################### + +roller { + I:"Block ID"=3595 + I:"BlockDouble ID"=3596 + I:"BlockSlab ID"=3595 +} + + +#################### +# rollercharger +#################### + +rollercharger { + I:"Block ID"=3597 +} + + +#################### +# switch +#################### + +switch { + I:"Block ID"=3574 +} + + +#################### +# tiber +#################### + +tiber { + I:"Chance to drop on meteor"=10 +} + + +#################### +# upgrades +#################### + +upgrades { + S:upgrade_consumption_0=§8Code: U420 + S:upgrade_consumption_1=§a-10% consommation + S:upgrade_consumption_bonus=0.9f + S:upgrade_consumption_number=U420 + S:upgrade_double_loot_0=§8Code: U450 + S:upgrade_double_loot_1=§a20% de chance de double loot + S:upgrade_double_loot_2=§c+10% consommation + S:upgrade_double_loot_bonus=0.2f + S:upgrade_double_loot_malus=1.1f + S:upgrade_double_loot_number=U450 + S:upgrade_durability_0=§8Code: U460 + S:upgrade_durability_1=§a+20% durabilité + S:upgrade_heat_0=§8Code: U400 + S:upgrade_heat_1=§a+20% temps de chauffe + S:upgrade_heat_2=§c+5% consommation + S:upgrade_heat_bonus=0.8f + S:upgrade_heat_malus=1.05f + S:upgrade_heat_number=U400 + S:upgrade_heat_redstone_0=§8Code: U410 + S:upgrade_heat_redstone_1=§aSignal redstone à 70% de chauffe + S:upgrade_heat_redstone_number=U410 + S:upgrade_production_0=§8Code: U430 + S:upgrade_production_1=§a+20% production + S:upgrade_production_bonus=1.2f + S:upgrade_production_number=U430 + S:upgrade_production_speed_0=§8Code: U440 + S:upgrade_production_speed_1=§a+30% vitesse de production + S:upgrade_production_speed_2=§c+10% consommation + S:upgrade_production_speed_bonus=0.7f + S:upgrade_production_speed_malus=1.1f + S:upgrade_production_speed_number=U440 +} + + +#################### +# wirebirchcamo +#################### + +wirebirchcamo { + I:"Block ID"=3583 +} + + +#################### +# wirefactory +#################### + +wirefactory { + I:"Block ID"=3582 +} + + +#################### +# wirefuturistic +#################### + +wirefuturistic { + I:"Block ID"=3581 +} + + +#################### +# wiremodern +#################### + +wiremodern { + I:"Block ID"=3580 +} + + +#################### +# wirewoodcamo +#################### + +wirewoodcamo { + I:"Block ID"=3579 +} + + diff --git a/config/pamextendedglass.cfg b/config/pamextendedglass.cfg new file mode 100755 index 0000000..d6f9d38 --- /dev/null +++ b/config/pamextendedglass.cfg @@ -0,0 +1,13 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:glassslabID=2321 + I:glassstairsID=2320 + I:glassthinID=2322 +} + + diff --git a/config/pamharvestcraft.cfg b/config/pamharvestcraft.cfg new file mode 100755 index 0000000..b068c4c --- /dev/null +++ b/config/pamharvestcraft.cfg @@ -0,0 +1,814 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:candledeco10ID=3918 + I:candledeco11ID=3919 + I:candledeco12ID=3920 + I:candledeco13ID=3921 + I:candledeco14ID=3922 + I:candledeco15ID=3923 + I:candledeco16ID=3924 + I:candledeco1ID=3909 + I:candledeco2ID=3910 + I:candledeco3ID=3911 + I:candledeco4ID=3912 + I:candledeco5ID=3913 + I:candledeco6ID=3914 + I:candledeco7ID=3915 + I:candledeco8ID=3916 + I:candledeco9ID=3917 + I:coloredclothslabblackID=4066 + I:coloredclothslabblueID=4062 + I:coloredclothslabbrownID=4063 + I:coloredclothslabcyanID=4060 + I:coloredclothslabdarkgreyID=4058 + I:coloredclothslabgreenID=4064 + I:coloredclothslablightblueID=4054 + I:coloredclothslablightgreyID=4059 + I:coloredclothslablimeID=4056 + I:coloredclothslabmagentaID=4053 + I:coloredclothslaborangeID=4052 + I:coloredclothslabpinkID=4057 + I:coloredclothslabpurpleID=4061 + I:coloredclothslabredID=4065 + I:coloredclothslabwhiteID=4051 + I:coloredclothslabyellowID=4055 + I:coloredclothstairsblackID=4050 + I:coloredclothstairsblueID=4046 + I:coloredclothstairsbrownID=4047 + I:coloredclothstairscyanID=4044 + I:coloredclothstairsdarkgreyID=4042 + I:coloredclothstairsgreenID=4048 + I:coloredclothstairslightblueID=4038 + I:coloredclothstairslightgreyID=4043 + I:coloredclothstairslimeID=4040 + I:coloredclothstairsmagentaID=4037 + I:coloredclothstairsorangeID=4036 + I:coloredclothstairspinkID=4041 + I:coloredclothstairspurpleID=4045 + I:coloredclothstairsredID=4049 + I:coloredclothstairswhiteID=4035 + I:coloredclothstairsyellowID=4039 + I:pamapiaryID=2301 + I:pamappleID=4031 + I:pamapplesaplingID=4032 + I:pamavocadoID=3953 + I:pamavocadosaplingID=3954 + I:pambambooshootwildID=2753 + I:pambananaID=3959 + I:pambananasaplingID=3960 + I:pambeehiveID=2300 + I:pamblackberrywildID=3927 + I:pamblueberrywildID=4089 + I:pamcactusfruitwildID=3814 + I:pamcandleberrywildID=3908 + I:pamcherryID=4090 + I:pamcherrysaplingID=4091 + I:pamcinnamonID=3968 + I:pamcinnamonsaplingID=3969 + I:pamcoconutID=3962 + I:pamcoconutsaplingID=3963 + I:pamcottonwildID=4068 + I:pamcranberrywildID=3933 + I:pamcropID=4020 + I:pamcuttingboardID=2054 + I:pamdragonfruitID=3753 + I:pamdragonfruitsaplingID=3754 + I:pamgrapewildID=4071 + I:pamkiwiwildID=3936 + I:pamlemonID=4084 + I:pamlemonsaplingID=4085 + I:pamlimeID=3977 + I:pamlimesaplingID=3978 + I:pammangoID=3980 + I:pammangosaplingID=3981 + I:pamnutmegID=3956 + I:pamnutmegsaplingID=3957 + I:pamoliveID=3983 + I:pamolivesaplingID=3984 + I:pamorangeID=3971 + I:pamorangesaplingID=3972 + I:pampapayaID=3965 + I:pampapayasaplingID=3966 + I:pampeachID=3973 + I:pampeachsaplingID=3975 + I:pampearID=3947 + I:pampearsaplingID=3948 + I:pampeppercornID=3992 + I:pampeppercornsaplingID=3993 + I:pamplumID=3950 + I:pamplumsaplingID=3951 + I:pampomegranateID=3986 + I:pampomegranatesaplingID=3987 + I:pampresserID=2302 + I:pamraspberrywildID=3930 + I:pamrhubarbwildID=3900 + I:pamrutabagawildID=3901 + I:pamsaltID=3903 + I:pamseaweedwildID=4029 + I:pamspiceleafwildID=3942 + I:pamstarfruitID=3995 + I:pamstarfruitsaplingID=3996 + I:pamstrawberrywildID=4030 + I:pamsunflowerwildID=3939 + I:pamvanillabeanID=3989 + I:pamvanillabeansaplingID=3990 + I:pamwalnutID=3944 + I:pamwalnutsaplingID=3945 + I:pamwhitemushroomwildID=3902 + I:sinkID=3943 +} + + +#################### +# general +#################### + +general { + B:appletreegeneration=true + B:artichokeseeddropfromgrass=true + B:asparagusseeddropfromgrass=true + B:avocadotreegeneration=true + B:bambooshootseeddropfromgrass=false + B:bambooshootwildbushgeneration=true + B:bananatreegeneration=true + B:barleyseeddropfromgrass=true + B:beanseeddropfromgrass=true + I:beehiverarity=80 + B:beetseeddropfromgrass=true + B:bellpepperseeddropfromgrass=true + B:blackberryseeddropfromgrass=false + B:blackberrywildbushgeneration=true + B:blueberryseeddropfromgrass=false + B:blueberrywildbushgeneration=true + B:broccoliseeddropfromgrass=true + B:brusselsproutseeddropfromgrass=true + I:bushfoodrestore=1 + D:bushfoodsaturation=0.6000000238418579 + B:cabbageseeddropfromgrass=true + B:cactusfruitseeddropfromgrass=false + B:cactusfruitwildbushgeneration=true + B:candleberryseeddropfromgrass=false + B:candleberrywildbushgeneration=true + B:cantaloupeseeddropfromgrass=true + B:cauliflowerseeddropfromgrass=true + B:celeryseeddropfromgrass=true + B:cherrytreegeneration=true + B:chilipepperseeddropfromgrass=true + B:cinnamontreegeneration=true + B:coconuttreegeneration=true + B:coffeeseeddropfromgrass=true + B:cornseeddropfromgrass=true + B:cottonseeddropfromgrass=false + B:cottonwildbushgeneration=true + B:cranberryseeddropfromgrass=false + B:cranberrywildbushgeneration=true + I:cropfoodrestore=1 + D:cropfoodsaturation=0.6000000238418579 + B:cucumberseeddropfromgrass=true + B:dragonfruittreegeneration=true + B:eggplantseeddropfromgrass=true + B:enablebeehivegeneration=true + B:enableclothslabs=true + B:enableclothstairs=true + B:enablecoloredcandles=true + B:enableglassbakewarerecipe=false + B:enablesaltfromwaterbucketrecipe=true + B:enablesaltgeneration=true + B:enablesinks=true + I:freshmilkfrombucket=4 + I:freshwaterfrombucket=4 + B:garlicseeddropfromgrass=true + B:gingerseeddropfromgrass=true + B:grapeseeddropfromgrass=false + B:grapewildbushgeneration=true + B:kiwiseeddropfromgrass=false + B:kiwiwildbushgeneration=true + B:leekseeddropfromgrass=true + B:lemontreegeneration=true + B:lettuceseeddropfromgrass=true + B:limetreegeneration=true + B:mangotreegeneration=true + D:mealsaturation=1.2000000476837158 + D:meatymealsaturation=1.600000023841858 + B:mustardseeddropfromgrass=true + B:nutmegtreegeneration=true + B:oatsseeddropfromgrass=true + B:okraseeddropfromgrass=true + B:olivetreegeneration=true + B:onionseeddropfromgrass=true + B:orangetreegeneration=true + B:papayatreegeneration=true + B:parsnipseeddropfromgrass=true + B:peachtreegeneration=true + B:peanutseeddropfromgrass=true + B:peartreegeneration=true + B:peasseeddropfromgrass=true + B:peppercorntreegeneration=true + B:pineappleseeddropfromgrass=true + B:plumtreegeneration=true + B:pomegranatetreegeneration=true + B:radishseeddropfromgrass=true + B:raspberryseeddropfromgrass=false + B:raspberrywildbushgeneration=true + B:rhubarbseeddropfromgrass=false + B:rhubarbwildbushgeneration=true + B:riceseeddropfromgrass=true + B:rutabagaseeddropfromgrass=true + B:rutabagawildbushgeneration=true + B:ryeseeddropfromgrass=true + I:saltrarity=10 + B:scallionseeddropfromgrass=true + B:seaweedseeddropfromgrass=false + B:seaweedwildbushgeneration=true + I:seedrarity=1 + B:seedsdropfromcrop=false + B:sheepdropmutton=true + D:snacksaturation=0.6000000238418579 + B:soybeanseeddropfromgrass=true + B:spiceleafseeddropfromgrass=false + B:spiceleafwildbushgeneration=true + B:squiddropcalamari=true + B:starfruittreegeneration=true + B:strawberryseeddropfromgrass=false + B:strawberrywildbushgeneration=true + B:sunflowerseeddropfromgrass=false + B:sunflowerwildbushgeneration=true + B:sweetpotatoseeddropfromgrass=true + B:teaseeddropfromgrass=true + B:tomatoseeddropfromgrass=true + I:treefoodrestore=1 + D:treefoodsaturation=0.6000000238418579 + I:treerarity=2 + B:turnipseeddropfromgrass=true + B:vanillabeantreegeneration=true + B:walnuttreegeneration=true + B:whitemushroomseeddropfromgrass=false + B:whitemushroomwildbushgeneration=true + I:wildbushdropamount=3 + I:wildbushrarity=2 + B:wintersquashseeddropfromgrass=true + B:zucchiniseeddropfromgrass=true +} + + +#################### +# item +#################### + +item { + I:Non-Food=15050 + I:applejellyID=15968 + I:applejellysandwichID=15969 + I:applejuiceID=15017 + I:applepieID=15018 + I:applesauceID=15016 + I:appleyogurtID=15934 + I:arcticoatsID=4894 + I:arcticoatsseedID=4895 + I:artichokeID=13019 + I:artichokeseedID=13020 + I:asparagusID=15792 + I:asparagusquicheID=15847 + I:asparagusseedID=15793 + I:asparagussoupID=15848 + I:avocadoID=15703 + I:avocadoburritID=15860 + I:baconcheeseburgerID=15045 + I:baconmushroomburgerID=15951 + I:bakedbeansID=15456 + I:bakedbeetsID=15812 + I:bakedhamID=15042 + I:bakedsweetpotatoID=15791 + I:bakedturnipsID=15826 + I:bakewareID=15003 + I:baklavaID=15949 + I:bambooshootID=13560 + I:bambooshootseedID=13561 + I:bananaID=15705 + I:banananutbreadID=15866 + I:bananasmoothieID=15867 + I:bananasplitID=15865 + I:bananayogurtID=15868 + I:barleyID=13001 + I:barleyseedID=13002 + I:beanID=15451 + I:beanburritoID=15459 + I:beansandriceID=15457 + I:beanseedID=15452 + I:beefjerkyID=16071 + I:beeswaxID=13050 + I:beetID=15754 + I:beetsaladID=15810 + I:beetseedID=15755 + I:beetsoupID=15811 + I:bellpepperID=15476 + I:bellpepperseedID=15477 + I:biscuitID=15905 + I:blackberryID=15641 + I:blackberrycobblerID=15919 + I:blackberryjellyID=16030 + I:blackberryjellysandwichID=15970 + I:blackberryjuiceID=15918 + I:blackberryseedID=15642 + I:blackberrysmoothieID=15920 + I:blackberryyogurtID=15921 + I:blackpepperID=15943 + I:bltID=15233 + I:blueberryID=15551 + I:blueberryjellyID=15971 + I:blueberryjellysandwichID=15972 + I:blueberryjuiceID=15558 + I:blueberrymuffinID=15557 + I:blueberrypancakesID=15560 + I:blueberrypieID=15556 + I:blueberryseedID=15552 + I:blueberrysmoothieID=15555 + I:blueberryyogurtID=15912 + I:boildedID=15053 + I:braisedonionsID=15258 + I:breadedporkchopID=15040 + I:broccoliID=15758 + I:broccolimacID=15813 + I:broccolindipID=15814 + I:broccoliseedID=15759 + I:brownieID=15851 + I:brusselsproutID=13021 + I:brusselsproutseedID=13022 + I:bubblywaterID=16050 + I:butterID=15012 + I:butteredpotatoID=15029 + I:cabbageID=13023 + I:cabbageseedID=13024 + I:cactusfruitID=15746 + I:cactusfruitjuiceID=15942 + I:cactusfruitseedID=15747 + I:cactussoupID=15900 + I:calamaricookedID=15967 + I:calamarirawID=15966 + I:candiedgingerID=15829 + I:candiedlemonID=15532 + I:candiedsweetpotatoesID=15817 + I:candiedwalnutsID=15850 + I:candleberryID=15626 + I:candleberryseedID=15627 + I:cantaloupeID=15742 + I:cantaloupeseedID=15743 + I:caramelID=15055 + I:caramelappleID=15019 + I:caramelicecreamID=16059 + I:carrotcakeID=15026 + I:carrotjuiceID=15025 + I:carrotsoupID=15027 + I:cauliflowerID=13003 + I:cauliflowerseedID=13004 + I:celeryID=15778 + I:celeryandpeanutbutterID=15839 + I:celeryseedID=15779 + I:celerysoupID=15842 + I:chaiteaID=15805 + I:cheeseID=15013 + I:cheeseburgerID=15044 + I:cheesecakeID=15581 + I:cherryID=15576 + I:cherrycheesecakeID=15582 + I:cherryjellyID=15973 + I:cherryjellysandwichID=15974 + I:cherryjuiceID=15577 + I:cherrypieID=15578 + I:cherrysmoothieID=15580 + I:cherrysodaID=16051 + I:cherryyogurtID=15914 + I:chickencelerycasseroleID=15840 + I:chickencurryID=15870 + I:chickennoodlesoupID=15038 + I:chickenparmasanID=15208 + I:chickenpotpieID=15039 + I:chickensandwichID=15037 + I:chiliID=15458 + I:chilichocolateID=15508 + I:chilipepperID=15501 + I:chilipepperseedID=15502 + I:chilipoppersID=15506 + I:chocolatebarID=15060 + I:chocolatecherryID=15579 + I:chocolatedonutID=15896 + I:chocolateicecreamID=15062 + I:chocolatemilkID=15922 + I:chocolatesprinklecakeID=15909 + I:chocolatestrawberryID=15309 + I:chocolateyogurtID=15917 + I:cinnamonID=15709 + I:cinnamonrollID=15892 + I:cinnamonsugardonutID=15928 + I:cocoapowderID=15059 + I:coconutID=15706 + I:coconutmilkID=15869 + I:coconutshrimpID=15871 + I:coconutyogurtID=15872 + I:coffeeID=15729 + I:coffeebeanID=15725 + I:coffeeconlecheID=15807 + I:coffeeseedID=15726 + I:colasodaID=16052 + I:cornID=15276 + I:cornbreadID=15283 + I:cornmealID=15282 + I:cornonthecobID=15281 + I:cornseedID=15277 + I:cottonID=15326 + I:cottonseedID=15328 + I:cranberryID=15661 + I:cranberrybarID=15940 + I:cranberryjellyID=15975 + I:cranberryjellysandwichID=15976 + I:cranberryjuiceID=15938 + I:cranberrysauceID=15939 + I:cranberryseedID=15662 + I:creamcookieID=15906 + I:creamedbroccolisoupID=15815 + I:creamedcornID=15288 + I:creamofavocadosoupID=15859 + I:cucumberID=15376 + I:cucumbersaladID=15381 + I:cucumberseedID=15377 + I:cucumbersoupID=15382 + I:curryID=15434 + I:custardID=15959 + I:cuttingboardID=15004 + I:delightedmealID=15237 + I:deluxecheeseburgerID=15236 + I:donutID=15895 + I:doughID=15008 + I:dragonfruitID=15400 + I:ediblerootID=16063 + I:eggnogID=15958 + I:eggplantID=15720 + I:eggplantparmID=15803 + I:eggplantseedID=15721 + I:eggsaladID=15054 + I:espressoID=15806 + I:extremechiliID=15507 + I:firmtofuID=16079 + I:fishandchipsID=15049 + I:fishdinnerID=15529 + I:fishlettucewrapID=15232 + I:fishsandwichID=15047 + I:fishsticksID=15048 + I:fishtacoID=15287 + I:flourID=15007 + I:fonioID=4829 + I:fonioseedID=4830 + I:footlongID=15911 + I:frenchtoastID=15893 + I:freshmilkID=15963 + I:freshwaterID=15962 + I:friedchickenID=15908 + I:friedeggID=15051 + I:friedriceID=15432 + I:friesID=15034 + I:frosteddonutID=15899 + I:fruitcrumbleID=15862 + I:fruitpunchID=15952 + I:fruitsaladID=15065 + I:gardensoupID=15961 + I:garlicID=15774 + I:garlicbreadID=15834 + I:garlicchickenID=15836 + I:garlicmashedpotatoesID=15835 + I:garlicseedID=15775 + I:gingerID=15770 + I:gingerbreadID=15827 + I:gingerchickenID=16064 + I:gingeredrhubarbtartID=16067 + I:gingerseedID=15771 + I:gingersnapsID=15828 + I:gingersodaID=16053 + I:glazedcarrotsID=15028 + I:glazedspeltID=4896 + I:glazedspeltseedID=4897 + I:grapeID=15351 + I:grapejellyID=15357 + I:grapejuiceID=15355 + I:grapesaladID=15359 + I:grapeseedID=15352 + I:grapesodaID=16054 + I:grapeyogurtID=15916 + I:grilledasparagusID=15796 + I:grilledcheeseID=15015 + I:grilledeggplantID=15724 + I:grilledmushroomID=15035 + I:grilledskewersID=15482 + I:groundcinnamonID=15944 + I:groundnutmegID=15945 + I:guacamoleID=15858 + I:gummybearsID=15950 + I:hamburgerID=15043 + I:hardenedleatherID=15635 + I:hardenedleatherbootsID=15634 + I:hardenedleatherchestID=15632 + I:hardenedleatherhelmID=15631 + I:hardenedleatherleggingsID=15633 + I:hashID=15257 + I:heartybreakfastID=15259 + I:heavycreamID=15011 + I:herbbutterparsnipsID=16076 + I:honeyID=15753 + I:honeycombID=15752 + I:honeylemonlambID=16069 + I:hotchocolateID=15061 + I:hotdogID=15041 + I:hotwingsID=15505 + I:icecreamID=15014 + I:jaffaID=15907 + I:jellybeansID=15904 + I:jellydonutID=15898 + I:juicerID=15948 + I:kamutID=4827 + I:kamutseedID=4828 + I:ketchupID=15207 + I:keylimepieID=15882 + I:kiwiID=15671 + I:kiwijellyID=15977 + I:kiwijellysandwichID=15978 + I:kiwijuiceID=15930 + I:kiwiseedID=15672 + I:kiwismoothieID=15931 + I:kiwiyogurtID=15932 + I:lambbarleysoupID=16068 + I:leafychickensandwichID=15234 + I:leafyfishsandwichID=15235 + I:leekID=13005 + I:leekbaconsoupID=16075 + I:leekseedID=13006 + I:lemonID=15526 + I:lemonaideID=15527 + I:lemonbarID=15528 + I:lemonchickenID=15533 + I:lemonjellyID=15979 + I:lemonjellysandwichID=15980 + I:lemonlimesodaID=16055 + I:lemonmeringueID=15531 + I:lemonsmoothieID=15530 + I:lemonyogurtID=15913 + I:lettuceID=15226 + I:lettuceseedID=15227 + I:limeID=15712 + I:limejellyID=15981 + I:limejellysandwichID=15982 + I:limejuiceID=15881 + I:limesmoothieID=15883 + I:limeyogurtID=15884 + I:loadedbakedpotatoID=15030 + I:mangoID=15713 + I:mangojellyID=15983 + I:mangojellysandwichID=15984 + I:mangojuiceID=15885 + I:mangosmoothieID=15886 + I:mangoyogurtID=15887 + I:marinatedcucumbersID=15384 + I:marshmellowsID=15894 + I:mashedpotatoesID=15031 + I:mashedsweetpotatoesID=15818 + I:meatystewID=15953 + I:melonjuiceID=15023 + I:melonsmoothieID=15024 + I:melonyogurtID=15929 + I:mintchocolatechipicecreamID=16060 + I:mixedsaladID=15954 + I:mixingbowlID=15947 + I:mochaicecreamID=15808 + I:mortarandpestleID=15005 + I:mushroomrisottoID=15433 + I:mustardID=15830 + I:mustardseedID=15735 + I:mustardseedsID=15734 + I:muttoncookedID=15965 + I:muttonrawID=15964 + I:nachoesID=15285 + I:nutmegID=15704 + I:oatsID=13007 + I:oatsseedID=13008 + I:okraID=13025 + I:okraseedID=13026 + I:oldworldveggiesoupID=16065 + I:oliveID=15714 + I:oliveoilID=15946 + I:omeletID=15484 + I:onionID=15251 + I:onionseedID=15252 + I:onionsoupID=15255 + I:orangeID=15710 + I:orangechickenID=15874 + I:orangejellyID=15985 + I:orangejellysandwichID=15986 + I:orangejuiceID=15873 + I:orangesmoothieID=15875 + I:orangesodaID=16056 + I:orangeyogurtID=15876 + I:ovenroastedcauliflowerID=16074 + I:pancakesID=15559 + I:papayaID=15708 + I:papayajellyID=15987 + I:papayajellysandwichID=15988 + I:papayajuiceID=15852 + I:papayasmoothieID=15853 + I:papayayogurtID=15854 + I:parsnipID=13009 + I:parsnipseedID=13010 + I:pastaID=15010 + I:pbandjID=15408 + I:peachID=15711 + I:peachcobblerID=15878 + I:peachjellyID=15989 + I:peachjellysandwichID=15990 + I:peachjuiceID=15877 + I:peachsmoothieID=15879 + I:peachyogurtID=15880 + I:peanutID=13401 + I:peanutbutterID=15405 + I:peanutbuttercookiesID=15409 + I:peanutseedID=13402 + I:pearID=15701 + I:pearjuiceID=16073 + I:pearyogurtID=15863 + I:peasID=15730 + I:peasandceleryID=15841 + I:peasseedID=15731 + I:peppercornID=15718 + I:peppermintID=15941 + I:pickledbeetsID=15809 + I:picklesID=15380 + I:pinacoladaID=15955 + I:pineappleID=15762 + I:pineapplehamID=15822 + I:pineappleseedID=15763 + I:pineappleupsidedowncakeID=15821 + I:pineappleyogurtID=15823 + I:pizzaID=15209 + I:plainyogurtID=15933 + I:plumID=15702 + I:plumjuiceID=16072 + I:plumyogurtID=15864 + I:poachedpearID=15861 + I:pomegranateID=15715 + I:pomegranatejellyID=15991 + I:pomegranatejellysandwichID=15992 + I:pomegranatejuiceID=15888 + I:pomegranatesmoothieID=15889 + I:pomegranateyogurtID=15890 + I:popcornID=15280 + I:porklettucewrapID=15231 + I:potID=15000 + I:potatocakesID=15256 + I:potatosaladID=15032 + I:potatosoupID=15033 + I:potroastID=15046 + I:powdereddonutID=15897 + I:pumpkinbreadID=15020 + I:pumpkinoatsconesID=16070 + I:pumpkinsoupID=15022 + I:pumpkinyogurtID=15923 + I:queenbeeID=15750 + I:radishID=15782 + I:radishseedID=15783 + I:rainbowcurryID=15435 + I:raisincookiesID=15360 + I:raisinsID=15358 + I:raspberryID=15651 + I:raspberryicedteaID=15804 + I:raspberryjellyID=15993 + I:raspberryjellysandwichID=15994 + I:raspberryjuiceID=15924 + I:raspberrypieID=15925 + I:raspberryseedID=15652 + I:raspberrysmoothieID=15926 + I:raspberryyogurtID=15927 + I:redvelvetcakeID=15910 + I:refriedbeansID=15455 + I:rhubarbID=13027 + I:rhubarbseedID=13028 + I:riceID=15426 + I:ricecakeID=15430 + I:riceseedID=15427 + I:ricesoupID=15431 + I:roastedpumpkinseedsID=15021 + I:roastedrootveggiemedleyID=15825 + I:rootbeersodaID=16057 + I:rutabagaID=13011 + I:rutabagaseedID=13012 + I:ryeID=13013 + I:ryeseedID=13014 + I:saladdressingID=15956 + I:saltID=15006 + I:saltedsunflowerseedsID=15935 + I:saucepanID=15002 + I:scallionID=13015 + I:scallionbakedpotatoID=16077 + I:scallionseedID=13016 + I:scrambledeggID=15052 + I:seaweedID=13029 + I:seaweedseedID=13030 + I:seedsoupID=15902 + I:shepardspieID=15957 + I:silkentofuID=16080 + I:skilletID=15001 + I:softpretzelID=15903 + I:softpretzelandmustardID=15831 + I:sorghoID=4831 + I:sorghoseedID=4832 + I:soybeanID=13017 + I:soybeanseedID=13018 + I:soymilkID=16078 + I:spagettiID=15204 + I:spagettiandmeatballsID=15205 + I:spicebunID=16066 + I:spiceleafID=15691 + I:spiceleafseedID=15692 + I:spicygreensID=15833 + I:spicymustardporkID=15832 + I:spidereyesoupID=15057 + I:splitpeasoupID=15820 + I:springsaladID=15230 + I:starfruitID=15719 + I:starfruitjellyID=15995 + I:starfruitjellysandwichID=15996 + I:starfruitjuiceID=15855 + I:starfruitsmoothieID=15856 + I:starfruityogurtID=15857 + I:steamedpeasID=15819 + I:stockID=15064 + I:strawberryID=15301 + I:strawberryicecreamID=16061 + I:strawberryjellyID=15997 + I:strawberryjellysandwichID=15998 + I:strawberryjuiceID=15308 + I:strawberrypieID=15306 + I:strawberrysaladID=15307 + I:strawberryseedID=15302 + I:strawberrysmoothieID=15305 + I:strawberrysodaID=16058 + I:strawberryyogurtID=15915 + I:stuffedeggplantID=15802 + I:stuffedmushroomID=15036 + I:stuffedpepperID=15480 + I:summerradishsaladID=15837 + I:summersquashwithradishID=15838 + I:sunflowerbroccolisaladID=15937 + I:sunflowerseedID=15682 + I:sunflowerseedsID=15681 + I:sunflowerwheatrollsID=15936 + I:supremepizzaID=15483 + I:sushiID=15960 + I:sweetpotatoID=15787 + I:sweetpotatopieID=15816 + I:sweetpotatoseedID=15788 + I:tacoID=15286 + I:taffyID=15056 + I:teaID=15801 + I:tealeafID=15797 + I:teaseedID=15798 + I:toastID=15009 + I:toastedcoconutID=15707 + I:tomatoID=15200 + I:tomatoseedID=15201 + I:tomatosoupID=15206 + I:tortillaID=15284 + I:trailmixID=15406 + I:turnipID=15766 + I:turnipseedID=15767 + I:turnipsoupID=15824 + I:vanillaID=15717 + I:vanillabeanID=15716 + I:vanillaicecreamID=16062 + I:vanillayogurtID=15891 + I:vegetablesoupID=15063 + I:vegetarianlettucewrapID=15383 + I:veggiestirfryID=15481 + I:vinegarID=15356 + I:wafflesID=15901 + I:walnutID=15700 + I:walnutraisinbreadID=15849 + I:watermelonjellyID=15999 + I:watermelonjellysandwichID=16000 + I:waxID=15630 + I:waxcombID=15751 + I:whitemushroomID=15601 + I:whitemushroomseedID=15602 + I:wintersquashID=13031 + I:wintersquashseedID=13032 + I:wovencottonID=15327 + I:zestyzucchiniID=15845 + I:zombiejerkyID=15058 + I:zucchiniID=15738 + I:zucchinibakeID=15846 + I:zucchinibreadID=15843 + I:zucchinifriesID=15844 + I:zucchiniseedID=15739 +} + + diff --git a/config/pamrandomplants.cfg b/config/pamrandomplants.cfg new file mode 100755 index 0000000..f95820c --- /dev/null +++ b/config/pamrandomplants.cfg @@ -0,0 +1,20 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:randomplantID=2323 +} + + +#################### +# general +#################### + +general { + I:randomplantrarity=4 +} + + diff --git a/config/pamtemperateplants.cfg b/config/pamtemperateplants.cfg new file mode 100755 index 0000000..3d0ebe3 --- /dev/null +++ b/config/pamtemperateplants.cfg @@ -0,0 +1,36 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:temperateplantID=2303 +} + + +#################### +# general +#################### + +general { + S:temperateplant_0name=Dark Bush + S:temperateplant_10name=Short Tan Shrub + S:temperateplant_11name=Light Grass + S:temperateplant_12name=Light Mini Grass + S:temperateplant_13name=Dark Fern + S:temperateplant_14name=Colorful Bush + S:temperateplant_15name=Mini Coloreful Bush + S:temperateplant_1name=Dark Grass + S:temperateplant_2name=Dark Vine + S:temperateplant_3name=Dark Thin Grass + S:temperateplant_4name=Light Fern + S:temperateplant_5name=Dark Mini Grass + S:temperateplant_6name=Squat Bush + S:temperateplant_7name=Tall Bush + S:temperateplant_8name=Leafy Bush + S:temperateplant_9name=Light Thin Grass + I:temperateplantrarity=10 +} + + diff --git a/config/pamweeeflowers.cfg b/config/pamweeeflowers.cfg new file mode 100755 index 0000000..60b0fe0 --- /dev/null +++ b/config/pamweeeflowers.cfg @@ -0,0 +1,100 @@ +# Configuration file + +#################### +# block +#################### + +block { + I:blackvineID=2319 + I:bluevineID=2315 + I:brownvineID=2316 + I:cyanvineID=2313 + I:darkgreyvineID=2311 + I:flowerID=4000 + I:flowercropID=4001 + I:greenvineID=2317 + I:lightbluevineID=2307 + I:lightgreyvineID=2312 + I:limevineID=2309 + I:magentavineID=2306 + I:moonflowerID=4002 + I:orangevineID=2305 + I:pinkvineID=2310 + I:purplevineID=2314 + I:redvineID=2318 + I:whitevineID=2304 + I:yellowvineID=2308 +} + + +#################### +# general +#################### + +general { + S:blackflowername=Black Roses + S:blackmoonflowername=Black Moon Vine + S:blueflowername=Blue Hydrangeas + S:bluemoonflowername=Blue Pod + S:brownflowername=Dying Shrub + S:brownmoonflowername=Brown Fan Weed + S:cyanflowername=Cyan Wildflowers + S:cyanmoonflowername=Cyan Temple Flower + S:darkgreyflowername=Grey Peonies + S:darkgreymoonflowername=Dark Grey Bush + B:enablefloweringvineblocks=true + I:flowerRarity=10 + B:flowerdirectlytodyerecipes=true + I:flowerseedRarity=2 + I:flowerseedrecipeOutput=2 + S:greenflowername=Green Shrub + S:greenmoonflowername=Green Sparkle Weed + S:lightblueflowername=Blue Chrysanthemums + S:lightbluemoonflowername=Light Blue Lamp Flower + S:lightgreyflowername=Wild Parsley Blooms + S:lightgreymoonflowername=Light Grey Bush + S:limeflowername=Shrub + S:limemoonflowername=Lime Slime Weed + S:magentaflowername=Magenta Wildflowers + S:magentamoonflowername=Magenta Bubble Weed + I:moonflowerRarity=10 + S:orangeflowername=Orange Wild Poppies + S:orangemoonflowername=Orange Hover Flower + S:pinkflowername=Pink Dasies + S:pinkmoonflowername=Pink Moon Flower + S:purpleflowername=Purple Violets + S:purplemoonflowername=Purple Weed + S:redmoonflowername=Red Tendrils + I:redstoneflowerdyerecipeOutput=8 + B:tallgrassdropsflowerseeds=false + B:turnongamebreakingflowertodyerecipes=true + S:whiteflowername=White Roses + S:whitemoonflowername=White Moon Flower + S:yellowmoonflowername=Yellow Curl Weed +} + + +#################### +# item +#################### + +item { + I:blackseedID=14016 + I:blueseedID=14012 + I:brownseedID=14013 + I:cyanseedID=14010 + I:darkgreyseedID=14008 + I:greenseedID=14014 + I:lightblueseedID=14004 + I:lightgreyseedID=14009 + I:limeseedID=14006 + I:magentaseedID=14003 + I:orangeseedID=14002 + I:pinkseedID=14007 + I:purpleseedID=14011 + I:redseedID=14015 + I:whiteseedID=14001 + I:yellowseedID=14005 +} + + diff --git a/config/weaponmod.cfg b/config/weaponmod.cfg new file mode 100755 index 0000000..963b243 --- /dev/null +++ b/config/weaponmod.cfg @@ -0,0 +1,141 @@ +# Configuration file + +#################### +# enable +#################### + +enable { + B:battleaxe.enabled=true + B:blowgun.enabled=true + B:blunderbuss.enabled=true + B:boomerang.enabled=false + B:cannon.enabled=false + B:crossbow.enabled=true + B:dummy.enabled=true + B:dynamite.enabled=false + B:firerod.enabled=true + B:flail.enabled=false + B:flintlock.enabled=true + B:halberd.enabled=true + B:javelin.enabled=true + B:katana.enabled=true + B:knife.enabled=true + B:musket.enabled=true + B:spear.enabled=true + B:warhammer.enabled=true +} + + +#################### +# enalbe +#=================== +# Enable or disable certain weapons +#################### + +enalbe { +} + + +#################### +# item +#################### + +item { + I:battleaxe.diamond=30000 + I:battleaxe.gold=30001 + I:battleaxe.iron=30002 + I:battleaxe.stone=30003 + I:battleaxe.wood=30004 + I:blowgun=11557 + I:blunder-ironpart=11565 + I:blunderbuss=11563 + I:bolt=11556 + I:boomerang.diamond=30010 + I:boomerang.gold=30011 + I:boomerang.iron=30009 + I:boomerang.stone=30008 + I:boomerang.wood=30007 + I:bullet=11554 + I:cannon=11561 + I:cannonball=11562 + I:crossbow=11555 + I:dart=11558 + I:dummy=30012 + I:dynamite=11559 + I:firerod=11560 + I:flail.diamond=11548 + I:flail.gold=11549 + I:flail.iron=11547 + I:flail.stone=11546 + I:flail.wood=11545 + I:flintlock=11583 + I:gun-stock=11567 + I:halberd.diamond=11528 + I:halberd.gold=11529 + I:halberd.iron=11527 + I:halberd.stone=11526 + I:halberd.wood=11525 + I:javelin=11550 + I:katana.diamond=11581 + I:katana.gold=11582 + I:katana.iron=11580 + I:katana.stone=11579 + I:katana.wood=11578 + I:knife.diamond=11543 + I:knife.gold=11544 + I:knife.iron=11542 + I:knife.stone=11541 + I:knife.wood=11540 + I:musket=11551 + I:musket-ironpart=11553 + I:musketbayonet.diamond=11576 + I:musketbayonet.gold=11577 + I:musketbayonet.iron=11575 + I:musketbayonet.stone=11574 + I:musketbayonet.wood=11573 + I:shot=11564 + I:spear.diamond=11523 + I:spear.gold=11524 + I:spear.iron=11522 + I:spear.stone=11521 + I:spear.wood=11520 + I:warhammer.diamond=11538 + I:warhammer.gold=11539 + I:warhammer.iron=11537 + I:warhammer.stone=11536 + I:warhammer.wood=11535 +} + + +#################### +# reloadtime +#=================== +# The reload durations of the reloadable weapons +#################### + +reloadtime { + I:blowgun.reloadtime=10 + I:blunderbuss.reloadtime=20 + I:crossbow.reloadtime=15 + I:flintlock.reloadtime=15 + I:musket.reloadtime=30 +} + + +#################### +# settings +#=================== +# Miscellaneous mod settings +#################### + +settings { + B:can-throw-knife=true + B:can-throw-spear=true + B:cannon-block-damage=true + B:dynamite-block-damage=true + + # Change this to 'false' to allow only the thrower/shooter of the projectile to pick the item up. If set to 'true' everyone can pick the item up. + B:pickup-all=true +} + + diff --git a/config/worldedit/config.yml b/config/worldedit/config.yml new file mode 100644 index 0000000..0eded48 --- /dev/null +++ b/config/worldedit/config.yml @@ -0,0 +1,9 @@ +# Configuration de WorldEdit pour Minecraft 1.6.4 +profile-mode: true +logging: true +max-blocks-changed: 100000 +default-god-mode: false +max-polygon-points: 20 +snapshots-dir: plugins/WorldEdit/snapshots +navigation-wand-item: 271 +navigation-wand-max-distance: 100 diff --git a/config/worldedit/worldedit.properties b/config/worldedit/worldedit.properties new file mode 100644 index 0000000..41a0ba5 --- /dev/null +++ b/config/worldedit/worldedit.properties @@ -0,0 +1,36 @@ +#Don't put comments; they get removed +#Tue Feb 03 20:56:55 UTC 2026 +default-max-polygon-points=-1 +schematic-save-dir=schematics +allow-extra-data-values=false +super-pickaxe-many-drop-items=true +nav-use-glass=true +max-polyhedron-points=20 +register-help=true +nav-wand-item=345 +profile=false +super-pickaxe-drop-items=true +disallowed-blocks=6,26,27,28,31,32,34,36,37,38,39,40,46,50,51,55,59,66,69,75,76,93,94,77,81,83,7,14,15,16,56 +max-super-pickaxe-size=5 +max-brush-radius=10 +craftscript-dir=craftscripts +default-max-polyhedron-points=-1 +no-double-slash=false +wand-item=271 +shell-save-type= +scripting-timeout=3000 +snapshots-dir= +use-inventory-creative-override=false +log-file=worldedit.log +butcher-default-radius=-1 +nav-wand-distance=50 +max-changed-blocks=-1 +history-size=15 +default-max-changed-blocks=-1 +use-inventory=false +use-inventory-override=false +allow-symbolic-links=false +log-commands=false +butcher-max-radius=-1 +max-polygon-points=20 +max-radius=-1 diff --git a/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.ChestUI.zui b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.ChestUI.zui new file mode 100755 index 0000000..df12e63 Binary files /dev/null and b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.ChestUI.zui differ diff --git a/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.InventoryUI.zui b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.InventoryUI.zui new file mode 100755 index 0000000..df12e63 Binary files /dev/null and b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.InventoryUI.zui differ diff --git a/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.ProfileUI.zui b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.ProfileUI.zui new file mode 100755 index 0000000..df12e63 Binary files /dev/null and b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.ProfileUI.zui differ diff --git a/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.SummaryUI.zui b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.SummaryUI.zui new file mode 100755 index 0000000..df12e63 Binary files /dev/null and b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.SummaryUI.zui differ diff --git a/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.TabListUI.zui b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.TabListUI.zui new file mode 100755 index 0000000..df12e63 Binary files /dev/null and b/config/zephyr-ui/property/net.ilexiconn.nationsgui.forge.client.gui.zephyr.TabListUI.zui differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6ae61d1 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,53 @@ +version: '3' + +services: + nationsglory-modded: + image: itzg/minecraft-server:java7 + container_name: mc-nationsglory + restart: unless-stopped + network_mode: "host" + + environment: + # IMPORTANT: Ne pas utiliser TYPE, utiliser CUSTOM_SERVER directement + # Cela force le conteneur à utiliser le JAR local au lieu de télécharger + SERVER_PORT: "25565" + RCON_PORT: "25575" + RCON_PASSWORD: "minecraft" + ENABLE_RCON: "true" + SKIP_HEALTH_CHECK: "true" + ACCEPT_EULA: "TRUE" + EULA: "TRUE" + ONLINE_MODE: "FALSE" + DIFFICULTY: "1" + GAMEMODE: "1" + LEVEL_TYPE: "FLAT" + MEMORY: "2G" + INIT_MEMORY: "1G" + JVM_OPTS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200" + # CRITICAL: Désactiver le download automatique + SKIP_SERVER_PROPERTIES: "false" + # Pointer directement au JAR local + CUSTOM_SERVER: "/data/mcpc.jar" + + entrypoint: [] + command: + - sh + - -c + - | + cd /data + exec java -Xms1G -Xmx2G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -jar mcpc.jar nogui + + volumes: + - .:/data + + deploy: + resources: + limits: + memory: 3G + reservations: + memory: 1G + + ulimits: + nofile: + soft: 65535 + hard: 65535 diff --git a/docker-compose.yml.backup b/docker-compose.yml.backup new file mode 100644 index 0000000..7d8768d --- /dev/null +++ b/docker-compose.yml.backup @@ -0,0 +1,52 @@ +version: '3' + +services: + nationsglory-modded: + image: itzg/minecraft-server:java7 + container_name: mc-nationsglory + restart: unless-stopped + network_mode: "host" + + environment: + # IMPORTANT: Ne pas utiliser TYPE, utiliser CUSTOM_SERVER directement + # Cela force le conteneur à utiliser le JAR local au lieu de télécharger + SERVER_PORT: "25565" + RCON_PORT: "25575" + SKIP_RCON: "true" + SKIP_HEALTH_CHECK: "true" + ACCEPT_EULA: "TRUE" + EULA: "TRUE" + ONLINE_MODE: "FALSE" + DIFFICULTY: "1" + GAMEMODE: "1" + LEVEL_TYPE: "FLAT" + MEMORY: "2G" + INIT_MEMORY: "1G" + JVM_OPTS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200" + # CRITICAL: Désactiver le download automatique + SKIP_SERVER_PROPERTIES: "false" + # Pointer directement au JAR local + CUSTOM_SERVER: "/data/mcpc.jar" + + entrypoint: [] + command: + - sh + - -c + - | + cd /data + exec java -Xms1G -Xmx2G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -jar mcpc.jar nogui + + volumes: + - .:/data + + deploy: + resources: + limits: + memory: 3G + reservations: + memory: 1G + + ulimits: + nofile: + soft: 65535 + hard: 65535 diff --git a/eula.txt b/eula.txt new file mode 100644 index 0000000..fd6b089 --- /dev/null +++ b/eula.txt @@ -0,0 +1,4 @@ +# Generated via Docker +# Tue 03 Feb 2026 08:04:21 PM UTC +eula=true + diff --git a/init-git.sh b/init-git.sh new file mode 100755 index 0000000..cdbe27f --- /dev/null +++ b/init-git.sh @@ -0,0 +1,55 @@ +#!/bin/bash +# Script d'initialisation Git pour NationsGlory + +echo "🚀 Initialisation du dépôt Git NationsGlory" +echo "" + +# Initialiser le dépôt +if [ ! -d .git ]; then + git init + echo "✓ Dépôt Git initialisé" +else + echo "⚠️ Dépôt Git déjà existant" +fi + +# Ajouter les fichiers +git add docker-compose.yml +git add .gitignore +git add .env.example +git add DEPLOY_README.md +git add DEPLOYMENT_CHECKLIST.md +git add README.md 2>/dev/null +git add init-git.sh +git add mcpc.jar +git add mods/ +git add plugins/*.jar +git add config/ +git add Flan/ 2>/dev/null +git add customnpcs/ 2>/dev/null + +echo "✓ Fichiers ajoutés au staging (incluant mcpc.jar - 29MB)" +echo "" +echo "Fichiers prêts à être commités:" +git status --short + +echo "" +echo "📊 Taille du dépôt:" +du -sh .git 2>/dev/null || echo "~53 MB (avec mcpc.jar)" + +echo "" +echo "📝 Prochaines étapes:" +echo "1. Configurer Git:" +echo " git config user.name 'Votre Nom'" +echo " git config user.email 'votre@email.com'" +echo "" +echo "2. Faire le premier commit:" +echo " git commit -m 'Initial commit - NationsGlory 1.6.4 (mcpc.jar inclus)'" +echo "" +echo "3. Ajouter le remote:" +echo " git remote add origin " +echo "" +echo "4. Pousser vers GitHub/GitLab:" +echo " git branch -M main" +echo " git push -u origin main" +echo "" +echo "⚠️ Note: Le premier push prendra ~1-2 minutes (53 MB à uploader)" diff --git a/install-prod.sh b/install-prod.sh new file mode 100755 index 0000000..d267af5 --- /dev/null +++ b/install-prod.sh @@ -0,0 +1,386 @@ +#!/bin/bash + +# Script d'installation automatique pour serveur de production +# Usage: curl -fsSL https://raw.githubusercontent.com/.../install.sh | sudo bash +# Ou: sudo bash install.sh + +set -e + +echo "╔══════════════════════════════════════════════════════════════════╗" +echo "║ 🎮 Installation automatique - Serveur NationsGlory Docker ║" +echo "╚══════════════════════════════════════════════════════════════════╝" +echo "" + +# Configuration +INSTALL_DIR="/srv/minecraft/moddé" +BACKUP_DIR="/srv/minecraft/backups" + +# Couleurs +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +NC='\033[0m' # No Color + +# Fonctions +log_info() { + echo -e "${BLUE}ℹ${NC} $1" +} + +log_success() { + echo -e "${GREEN}✅${NC} $1" +} + +log_warning() { + echo -e "${YELLOW}⚠️${NC} $1" +} + +log_error() { + echo -e "${RED}❌${NC} $1" +} + +# Vérification root +if [ "$EUID" -ne 0 ]; then + log_error "Ce script nécessite les droits root" + echo "Relancer avec: sudo $0" + exit 1 +fi + +echo "📋 Vérification du système..." +echo "" + +# Vérifier l'OS +if [ -f /etc/os-release ]; then + . /etc/os-release + OS=$NAME + VER=$VERSION_ID + log_info "Système détecté: $OS $VER" +else + log_warning "Système non identifié, continuation..." +fi + +# Installation Docker +echo "" +log_info "Vérification de Docker..." + +if ! command -v docker &> /dev/null; then + log_warning "Docker n'est pas installé" + read -p "Installer Docker? [Y/n] " -n 1 -r + echo "" + if [[ ! $REPLY =~ ^[Nn]$ ]]; then + log_info "Installation de Docker..." + curl -fsSL https://get.docker.com | sh + systemctl enable docker + systemctl start docker + log_success "Docker installé" + else + log_error "Docker est requis. Installation annulée." + exit 1 + fi +else + log_success "Docker déjà installé ($(docker --version))" +fi + +# Installation Docker Compose +echo "" +log_info "Vérification de Docker Compose..." + +if ! command -v docker-compose &> /dev/null; then + log_warning "Docker Compose n'est pas installé" + log_info "Installation de Docker Compose..." + + if [ -f /etc/debian_version ]; then + apt-get update -qq + apt-get install -y -qq docker-compose + elif [ -f /etc/redhat-release ]; then + yum install -y docker-compose + else + # Installation via pip + apt-get update -qq + apt-get install -y -qq python3-pip + pip3 install docker-compose + fi + + log_success "Docker Compose installé" +else + log_success "Docker Compose déjà installé ($(docker-compose --version))" +fi + +# Création de la structure +echo "" +log_info "Création de la structure /srv/minecraft..." + +mkdir -p /srv/minecraft/{moddé,proxy,survie,backups} +mkdir -p "$INSTALL_DIR"/{data,mods,plugins,config,libraries,backups} + +log_success "Structure créée" + +# Configuration du firewall (si UFW installé) +echo "" +if command -v ufw &> /dev/null; then + log_info "Configuration du firewall..." + ufw allow 25565/tcp comment "Minecraft NationsGlory" >/dev/null 2>&1 || true + log_success "Port 25565 ouvert" +else + log_warning "UFW non installé, configuration firewall manuelle requise" +fi + +# Création des fichiers de configuration +echo "" +log_info "Création des fichiers de configuration..." + +# .env +cat > "$INSTALL_DIR/.env" << 'EOF' +# Configuration NationsGlory +MEMORY=2G +INIT_MEMORY=1G +MINECRAFT_PORT=25565 +MAX_PLAYERS=20 +VIEW_DISTANCE=10 +DIFFICULTY=peaceful +GAMEMODE=creative +LEVEL_TYPE=FLAT +SERVER_NAME=NationsGlory Moddé +MOTD=§6NationsGlory §8- §7Serveur Moddé 1.6.4 +DEBUG=false +TZ=Europe/Paris +EOF + +log_success "Fichier .env créé" + +# docker-compose.yml +cat > "$INSTALL_DIR/docker-compose.yml" << 'EOF' +version: '3.8' + +services: + nationsglory-modded: + image: itzg/minecraft-server:java8 + container_name: mc-nationsglory + restart: unless-stopped + + environment: + TYPE: "CUSTOM" + CUSTOM_SERVER: "/data/mcpc.jar" + MEMORY: "${MEMORY:-2G}" + INIT_MEMORY: "${INIT_MEMORY:-1G}" + JVM_OPTS: "-XX:+UseG1GC" + EULA: "TRUE" + ONLINE_MODE: "FALSE" + DIFFICULTY: "${DIFFICULTY:-peaceful}" + MODE: "${GAMEMODE:-creative}" + LEVEL_TYPE: "${LEVEL_TYPE:-FLAT}" + PVP: "FALSE" + SPAWN_MONSTERS: "FALSE" + SPAWN_NPCS: "TRUE" + SPAWN_ANIMALS: "TRUE" + ALLOW_FLIGHT: "TRUE" + MAX_PLAYERS: "${MAX_PLAYERS:-20}" + VIEW_DISTANCE: "${VIEW_DISTANCE:-10}" + SERVER_NAME: "${SERVER_NAME:-NationsGlory}" + MOTD: "${MOTD:-NationsGlory Serveur}" + USE_AIKAR_FLAGS: "FALSE" + DEBUG: "${DEBUG:-FALSE}" + TZ: "${TZ:-Europe/Paris}" + + ports: + - "${MINECRAFT_PORT:-25565}:25565" + + volumes: + - ./data:/data + - ./mods:/data/mods + - ./plugins:/data/plugins + - ./config:/data/config + - ./world:/data/world + - ./libraries:/data/libraries + + deploy: + resources: + limits: + memory: 3G + reservations: + memory: 1G + + ulimits: + nofile: + soft: 65535 + hard: 65535 + + networks: + - minecraft-network + +networks: + minecraft-network: + driver: bridge +EOF + +log_success "Fichier docker-compose.yml créé" + +# Makefile +cat > "$INSTALL_DIR/Makefile" << 'EOF' +.PHONY: start stop restart logs status backup + +start: + @docker-compose up -d + @echo "✅ Serveur démarré" + +stop: + @docker-compose down + @echo "✅ Serveur arrêté" + +restart: + @docker-compose restart + @echo "✅ Serveur redémarré" + +logs: + @docker-compose logs -f --tail=100 + +status: + @docker-compose ps + @docker stats --no-stream mc-nationsglory 2>/dev/null || true + +backup: + @mkdir -p backups + @docker-compose exec -T nationsglory-modded rcon-cli save-all flush || true + @sleep 3 + @tar -czf backups/world-$(shell date +%Y%m%d-%H%M).tar.gz data/world/ + @echo "✅ Backup créé" + +console: + @docker-compose exec nationsglory-modded rcon-cli +EOF + +log_success "Makefile créé" + +# README rapide +cat > "$INSTALL_DIR/README.txt" << 'EOF' +╔══════════════════════════════════════════════════════════════════╗ +║ 🎮 Serveur NationsGlory - Docker ║ +╚══════════════════════════════════════════════════════════════════╝ + +⚠️ AVANT DE DÉMARRER: + +1. Copier mcpc.jar dans data/ +2. Copier les mods dans mods/ +3. Copier les plugins dans plugins/ +4. Copier les configs dans config/ +5. Copier les libraries dans libraries/ + +🚀 DÉMARRER: + + make start + ou: docker-compose up -d + +📊 VOIR LES LOGS: + + make logs + ou: docker-compose logs -f + +🛑 ARRÊTER: + + make stop + ou: docker-compose down + +📚 Documentation complète: + https://github.com/votre-repo/DEPLOYMENT.md + +EOF + +log_success "README créé" + +# Permissions +echo "" +log_info "Configuration des permissions..." + +chown -R 1000:1000 "$INSTALL_DIR" +chmod -R 755 "$INSTALL_DIR" + +log_success "Permissions configurées" + +# Script de backup automatique +echo "" +log_info "Création du script de backup automatique..." + +cat > /usr/local/bin/minecraft-backup.sh << 'EOF' +#!/bin/bash +cd /srv/minecraft/moddé +docker-compose exec -T nationsglory-modded rcon-cli save-all flush 2>/dev/null +sleep 5 +tar -czf /srv/minecraft/backups/auto-$(date +%Y%m%d-%H%M).tar.gz data/world/ +find /srv/minecraft/backups/ -name "auto-*.tar.gz" -mtime +7 -delete +echo "Backup terminé: $(date)" >> /var/log/minecraft-backup.log +EOF + +chmod +x /usr/local/bin/minecraft-backup.sh + +log_success "Script de backup créé: /usr/local/bin/minecraft-backup.sh" + +# Cron pour backups automatiques +echo "" +read -p "Configurer des backups automatiques quotidiens à 3h? [Y/n] " -n 1 -r +echo "" +if [[ ! $REPLY =~ ^[Nn]$ ]]; then + (crontab -l 2>/dev/null; echo "0 3 * * * /usr/local/bin/minecraft-backup.sh") | crontab - + log_success "Backups automatiques configurés (3h du matin)" +fi + +# Service systemd (optionnel) +echo "" +read -p "Créer un service systemd pour démarrage automatique? [Y/n] " -n 1 -r +echo "" +if [[ ! $REPLY =~ ^[Nn]$ ]]; then + cat > /etc/systemd/system/minecraft-nationsglory.service << EOF +[Unit] +Description=NationsGlory Minecraft Server +Requires=docker.service +After=docker.service + +[Service] +Type=oneshot +RemainAfterExit=yes +WorkingDirectory=$INSTALL_DIR +ExecStart=/usr/bin/docker-compose up -d +ExecStop=/usr/bin/docker-compose down +TimeoutStartSec=0 + +[Install] +WantedBy=multi-user.target +EOF + + systemctl daemon-reload + systemctl enable minecraft-nationsglory.service + log_success "Service systemd créé et activé" +fi + +# Résumé final +echo "" +echo "╔══════════════════════════════════════════════════════════════════╗" +echo "║ ✅ INSTALLATION TERMINÉE ! ║" +echo "╚══════════════════════════════════════════════════════════════════╝" +echo "" +log_info "Emplacement: $INSTALL_DIR" +log_info "Backups: $BACKUP_DIR" +echo "" +echo "📋 PROCHAINES ÉTAPES:" +echo "" +echo "1. Copier les fichiers du serveur:" +echo " cd $INSTALL_DIR" +echo " # Copier mcpc.jar, mods, plugins, config, libraries" +echo "" +echo "2. Démarrer le serveur:" +echo " cd $INSTALL_DIR" +echo " make start" +echo "" +echo "3. Voir les logs:" +echo " make logs" +echo "" +echo "4. Se connecter:" +echo " IP: $(hostname -I | awk '{print $1}'):25565" +echo " Version: Minecraft 1.6.4" +echo "" +echo "📚 Aide:" +echo " cd $INSTALL_DIR" +echo " make help" +echo " cat README.txt" +echo "" +log_success "Installation réussie !" +echo "" diff --git a/mcpc.jar b/mcpc.jar new file mode 100644 index 0000000..b314a4b Binary files /dev/null and b/mcpc.jar differ diff --git a/mods/aquatweaksng.jar b/mods/aquatweaksng.jar new file mode 100755 index 0000000..14dc9c8 Binary files /dev/null and b/mods/aquatweaksng.jar differ diff --git a/mods/banners-1.0.jar b/mods/banners-1.0.jar new file mode 100755 index 0000000..4164010 Binary files /dev/null and b/mods/banners-1.0.jar differ diff --git a/mods/chisel-1.0.jar b/mods/chisel-1.0.jar new file mode 100755 index 0000000..819e225 Binary files /dev/null and b/mods/chisel-1.0.jar differ diff --git a/mods/customnpc-1.0.jar b/mods/customnpc-1.0.jar new file mode 100755 index 0000000..8df88fb Binary files /dev/null and b/mods/customnpc-1.0.jar differ diff --git a/mods/flansmods-4.1.1.jar b/mods/flansmods-4.1.1.jar new file mode 100755 index 0000000..e68c257 Binary files /dev/null and b/mods/flansmods-4.1.1.jar differ diff --git a/mods/legacyjavafixer-1.0.jar b/mods/legacyjavafixer-1.0.jar new file mode 100755 index 0000000..f1c29d7 Binary files /dev/null and b/mods/legacyjavafixer-1.0.jar differ diff --git a/mods/model-api-1.0.jar b/mods/model-api-1.0.jar new file mode 100755 index 0000000..092f3c1 Binary files /dev/null and b/mods/model-api-1.0.jar differ diff --git a/mods/nabot.jar b/mods/nabot.jar new file mode 100755 index 0000000..ba6d00d Binary files /dev/null and b/mods/nabot.jar differ diff --git a/mods/ngbibliocraft-1.5.5.jar b/mods/ngbibliocraft-1.5.5.jar new file mode 100755 index 0000000..d1433ca Binary files /dev/null and b/mods/ngbibliocraft-1.5.5.jar differ diff --git a/mods/parachute-1.0.jar b/mods/parachute-1.0.jar new file mode 100755 index 0000000..1558708 Binary files /dev/null and b/mods/parachute-1.0.jar differ diff --git a/mods/specialarmor-1.0.jar b/mods/specialarmor-1.0.jar new file mode 100755 index 0000000..b3fe99b Binary files /dev/null and b/mods/specialarmor-1.0.jar differ diff --git a/mods/ue.jar b/mods/ue.jar new file mode 100755 index 0000000..4edfb11 Binary files /dev/null and b/mods/ue.jar differ diff --git a/mods/westerosblocksng.jar b/mods/westerosblocksng.jar new file mode 100755 index 0000000..29af83f Binary files /dev/null and b/mods/westerosblocksng.jar differ diff --git a/plugins/Essentials.jar b/plugins/Essentials.jar new file mode 100644 index 0000000..1deedd1 Binary files /dev/null and b/plugins/Essentials.jar differ diff --git a/plugins/Essentials.jar.bad b/plugins/Essentials.jar.bad new file mode 100644 index 0000000..5a751ea --- /dev/null +++ b/plugins/Essentials.jar.bad @@ -0,0 +1 @@ +Just a moment...
\ No newline at end of file diff --git a/plugins/Essentials.jar.incompatible b/plugins/Essentials.jar.incompatible new file mode 100644 index 0000000..1a160f5 Binary files /dev/null and b/plugins/Essentials.jar.incompatible differ diff --git a/plugins/Essentials/config.yml b/plugins/Essentials/config.yml new file mode 100644 index 0000000..73a3632 --- /dev/null +++ b/plugins/Essentials/config.yml @@ -0,0 +1,12 @@ +# Essentials Configuration + +# Utiliser un client cache pour les noms joueurs +use-bukkit-permissions: false + +# Support des commandes alternatives +command-prefix: "/" + +# WorldEdit interaction +worldedit.support: true +worldedit.allow-super-pickaxe: true + diff --git a/plugins/Essentials/items.csv b/plugins/Essentials/items.csv new file mode 100644 index 0000000..86b44f8 --- /dev/null +++ b/plugins/Essentials/items.csv @@ -0,0 +1,7416 @@ +#version: 2.13.1 +#If you change this file, it will not be automatically updated after the next release. +#item,id,metadata +stone,1,0 +sstone,1,0 +smoothstone,1,0 +rock,1,0 +grass,2,0 +greendirt,2,0 +greenearth,2,0 +greenland,2,0 +dirt,3,0 +earth,3,0 +land,3,0 +grasslessdirt,3,1 +grasslessearth,3,1 +grasslessland,3,1 +podzol,3,2 +cobblestone,4,0 +cstone,4,0 +cobble,4,0 +wood,5,0 +plank,5,0 +woodenplank,5,0 +woodplank,5,0 +wplank,5,0 +plankwooden,5,0 +plankwood,5,0 +plankw,5,0 +oakplank,5,0 +oakwoodenplank,5,0 +oakwoodplank,5,0 +oakwplank,5,0 +oakplankwooden,5,0 +oakplankwood,5,0 +oakplankw,5,0 +oplank,5,0 +owoodenplank,5,0 +owoodplank,5,0 +owplank,5,0 +oplankwooden,5,0 +oplankwood,5,0 +oplankw,5,0 +pineplank,5,1 +pinewoodenplank,5,1 +pinewoodplank,5,1 +pinewplank,5,1 +pineplankwooden,5,1 +pineplankwood,5,1 +pineplankw,5,1 +pplank,5,1 +pwoodenplank,5,1 +pwoodplank,5,1 +pwplank,5,1 +pplankwooden,5,1 +pplankwood,5,1 +pplankw,5,1 +darkplank,5,1 +darkwoodenplank,5,1 +darkwoodplank,5,1 +darkwplank,5,1 +darkplankwooden,5,1 +darkplankwood,5,1 +darkplankw,5,1 +dplank,5,1 +dwoodenplank,5,1 +dwoodplank,5,1 +dwplank,5,1 +dplankwooden,5,1 +dplankwood,5,1 +dplankw,5,1 +spruceplank,5,1 +sprucewoodenplank,5,1 +sprucewoodplank,5,1 +sprucewplank,5,1 +spruceplankwooden,5,1 +spruceplankwood,5,1 +spruceplankw,5,1 +splank,5,1 +swoodenplank,5,1 +swoodplank,5,1 +swplank,5,1 +splankwooden,5,1 +splankwood,5,1 +splankw,5,1 +birchplank,5,2 +birchwoodenplank,5,2 +birchwoodplank,5,2 +birchwplank,5,2 +birchplankwooden,5,2 +birchplankwood,5,2 +birchplankw,5,2 +bplank,5,2 +bwoodenplank,5,2 +bwoodplank,5,2 +bwplank,5,2 +bplankwooden,5,2 +bplankwood,5,2 +bplankw,5,2 +lightplank,5,2 +lightwoodenplank,5,2 +lightwoodplank,5,2 +lightwplank,5,2 +lightplankwooden,5,2 +lightplankwood,5,2 +lightplankw,5,2 +lplank,5,2 +lwoodenplank,5,2 +lwoodplank,5,2 +lwplank,5,2 +lplankwooden,5,2 +lplankwood,5,2 +lplankw,5,2 +whiteplank,5,2 +whitewoodenplank,5,2 +whitewoodplank,5,2 +whitewplank,5,2 +whiteplankwooden,5,2 +whiteplankwood,5,2 +whiteplankw,5,2 +wwoodenplank,5,2 +wwoodplank,5,2 +wwplank,5,2 +wplankwooden,5,2 +wplankwood,5,2 +wplankw,5,2 +jungleplank,5,3 +junglewoodenplank,5,3 +junglewoodplank,5,3 +junglewplank,5,3 +jungleplankwooden,5,3 +jungleplankwood,5,3 +jungleplankw,5,3 +jplank,5,3 +jwoodenplank,5,3 +jwoodplank,5,3 +jwplank,5,3 +jplankwooden,5,3 +jplankwood,5,3 +jplankw,5,3 +forestplank,5,3 +forestwoodenplank,5,3 +forestwoodplank,5,3 +forestwplank,5,3 +forestplankwooden,5,3 +forestplankwood,5,3 +forestplankw,5,3 +fplank,5,3 +fwoodenplank,5,3 +fwoodplank,5,3 +fwplank,5,3 +fplankwooden,5,3 +fplankwood,5,3 +fplankw,5,3 +acaciaplank,5,4 +acaciawoodenplank,5,4 +acaciawoodplank,5,4 +acaciawplank,5,4 +acaciaplankwooden,5,4 +acaciaplankwood,5,4 +acaciaplankw,5,4 +aplank,5,4 +awoodenplank,5,4 +awoodplank,5,4 +awplank,5,4 +aplankwooden,5,4 +aplankwood,5,4 +aplankw,5,4 +darkoakplank,5,5 +darkoakwoodenplank,5,5 +darkoakwoodplank,5,5 +darkoakwplank,5,5 +darkoakplankwooden,5,5 +darkoakplankwood,5,5 +darkoakplankw,5,5 +doakplank,5,5 +doakwoodenplank,5,5 +doakwoodplank,5,5 +doakwplank,5,5 +doakplankwooden,5,5 +doakplankwood,5,5 +doakplankw,5,5 +doplank,5,5 +dowoodenplank,5,5 +dowoodplank,5,5 +dowplank,5,5 +doplankwooden,5,5 +doplankwood,5,5 +doplankw,5,5 +sapling,6,0 +treesapling,6,0 +logsapling,6,0 +trunksapling,6,0 +woodsapling,6,0 +oaktreesapling,6,0 +oaklogsapling,6,0 +oaktrunksapling,6,0 +oakwoodsapling,6,0 +osapling,6,0 +otreesapling,6,0 +ologsapling,6,0 +otrunksapling,6,0 +owoodsapling,6,0 +darksapling,6,1 +darktreesapling,6,1 +darklogsapling,6,1 +darktrunksapling,6,1 +darkwoodsapling,6,1 +sprucesapling,6,1 +sprucetreesapling,6,1 +sprucelogsapling,6,1 +sprucetrunksapling,6,1 +sprucewoodsapling,6,1 +pinesapling,6,1 +pinetreesapling,6,1 +pinelogsapling,6,1 +pinetrunksapling,6,1 +pinewoodsapling,6,1 +dsapling,6,1 +dtreesapling,6,1 +dlogsapling,6,1 +dtrunksapling,6,1 +dwoodsapling,6,1 +ssapling,6,1 +streesapling,6,1 +slogsapling,6,1 +strunksapling,6,1 +swoodsapling,6,1 +psapling,6,1 +ptreesapling,6,1 +plogsapling,6,1 +ptrunksapling,6,1 +pwoodsapling,6,1 +birchsapling,6,2 +birchtreesapling,6,2 +birchlogsapling,6,2 +birchtrunksapling,6,2 +birchwoodsapling,6,2 +lightsapling,6,2 +lighttreesapling,6,2 +lightlogsapling,6,2 +lighttrunksapling,6,2 +lightwoodsapling,6,2 +whitesapling,6,2 +whitetreesapling,6,2 +whitelogsapling,6,2 +whitetrunksapling,6,2 +whitewoodsapling,6,2 +bsapling,6,2 +btreesapling,6,2 +blogsapling,6,2 +btrunksapling,6,2 +bwoodsapling,6,2 +lsapling,6,2 +ltreesapling,6,2 +llogsapling,6,2 +ltrunksapling,6,2 +lwoodsapling,6,2 +wsapling,6,2 +wtreesapling,6,2 +wlogsapling,6,2 +wtrunksapling,6,2 +wwoodsapling,6,2 +junglesapling,6,3 +jungletreesapling,6,3 +junglelogsapling,6,3 +jungletrunksapling,6,3 +junglewoodsapling,6,3 +forestsapling,6,3 +foresttreesapling,6,3 +forestlogsapling,6,3 +foresttrunksapling,6,3 +forestwoodsapling,6,3 +jsapling,6,3 +jtreesapling,6,3 +jlogsapling,6,3 +jtrunksapling,6,3 +jwoodsapling,6,3 +fsapling,6,3 +ftreesapling,6,3 +flogsapling,6,3 +ftrunksapling,6,3 +fwoodsapling,6,3 +acaciasapling,6,4 +acaciatreesapling,6,4 +acacialogsapling,6,4 +acaciatrunksapling,6,4 +acaciawoodsapling,6,4 +asapling,6,4 +atreesapling,6,4 +alogsapling,6,4 +atrunksapling,6,4 +awoodsapling,6,4 +darkoaksapling,6,5 +darkoaktreesapling,6,5 +darkoaklogsapling,6,5 +darkoaktrunksapling,6,5 +darkoakwoodsapling,6,5 +doaksapling,6,5 +doaktreesapling,6,5 +doaklogsapling,6,5 +doaktrunksapling,6,5 +dosapling,6,5 +dowoodsapling,6,5 +dotreesapling,6,5 +dologsapling,6,5 +dotrunksapling,6,5 +bedrock,7,0 +oprock,7,0 +opblock,7,0 +adminblock,7,0 +adminrock,7,0 +adminium,7,0 +water,8,0 +stationarywater,9,0 +stillwater,9,0 +swater,9,0 +lava,10,0 +stationarylava,11,0 +stilllava,11,0 +slava,11,0 +sand,12,0 +redsand,12,1 +rsand,12,1 +gravel,13,0 +goldore,14,0 +oregold,14,0 +gore,14,0 +oreg,14,0 +ogold,14,0 +goldo,14,0 +ironore,15,0 +oreiron,15,0 +irono,15,0 +oiron,15,0 +steelore,15,0 +oresteel,15,0 +steelo,15,0 +osteel,15,0 +iore,15,0 +orei,15,0 +sore,15,0 +ores,15,0 +coalore,16,0 +orecoal,16,0 +coalo,16,0 +ocoal,16,0 +core,16,0 +tree,17,0 +log,17,0 +trunk,17,0 +oak,17,0 +oaktree,17,0 +oaklog,17,0 +oaktrunk,17,0 +oakwood,17,0 +otree,17,0 +olog,17,0 +otrunk,17,0 +owood,17,0 +pine,17,1 +pinetree,17,1 +pinelog,17,1 +pinetrunk,17,1 +pinewood,17,1 +darktree,17,1 +darklog,17,1 +darktrunk,17,1 +darkwood,17,1 +spruce,17,1 +sprucetree,17,1 +sprucelog,17,1 +sprucetrunk,17,1 +sprucewood,17,1 +dtree,17,1 +dlog,17,1 +dtrunk,17,1 +dwood,17,1 +stree,17,1 +slog,17,1 +strunk,17,1 +swood,17,1 +ptree,17,1 +plog,17,1 +ptrunk,17,1 +pwood,17,1 +birch,17,2 +birchtree,17,2 +birchlog,17,2 +birchtrunk,17,2 +birchwood,17,2 +whitetree,17,2 +whitelog,17,2 +whitetrunk,17,2 +whitewood,17,2 +lighttree,17,2 +lightlog,17,2 +lighttrunk,17,2 +lightwood,17,2 +btree,17,2 +blog,17,2 +btrunk,17,2 +bwood,17,2 +wtree,17,2 +wlog,17,2 +wtrunk,17,2 +wwood,17,2 +ltree,17,2 +llog,17,2 +ltrunk,17,2 +lwood,17,2 +jungletree,17,3 +junglelog,17,3 +jungletrunk,17,3 +junglewood,17,3 +jungle,17,3 +forest,17,3 +foresttree,17,3 +forestlog,17,3 +foresttrunk,17,3 +forestwood,17,3 +jtree,17,3 +jlog,17,3 +jtrunk,17,3 +jwood,17,3 +ftree,17,3 +flog,17,3 +ftrunk,17,3 +fwood,17,3 +leaves,18,0 +leaf,18,0 +treeleaves,18,0 +logleaves,18,0 +trunkleaves,18,0 +woodleaves,18,0 +oakleaves,18,0 +oakleaf,18,0 +oleaves,18,0 +oleaf,18,0 +oaktreeleaves,18,0 +oaklogleaves,18,0 +oaktrunkleaves,18,0 +oakwoodleaves,18,0 +otreeleaves,18,0 +ologleaves,18,0 +otrunkleaves,18,0 +owoodleaves,18,0 +treeleaf,18,0 +logleaf,18,0 +trunkleaf,18,0 +woodleaf,18,0 +oaktreeleaf,18,0 +oaklogleaf,18,0 +oaktrunkleaf,18,0 +oakwoodleaf,18,0 +otreeleaf,18,0 +ologleaf,18,0 +otrunkleaf,18,0 +owoodleaf,18,0 +pineleaves,18,1 +pineleaf,18,1 +pleaves,18,1 +pleaf,18,1 +pinetreeleaves,18,1 +pinelogleaves,18,1 +pinetrunkleaves,18,1 +pinewoodleaves,18,1 +ptreeleaves,18,1 +plogleaves,18,1 +ptrunkleaves,18,1 +pwoodleaves,18,1 +spruceleaves,18,1 +spruceleaf,18,1 +sleaves,18,1 +sleaf,18,1 +sprucetreeleaves,18,1 +sprucelogleaves,18,1 +sprucetrunkleaves,18,1 +sprucewoodleaves,18,1 +streeleaves,18,1 +slogleaves,18,1 +strunkleaves,18,1 +swoodleaves,18,1 +darkleaves,18,1 +darkleaf,18,1 +dleaves,18,1 +dleaf,18,1 +darktreeleaves,18,1 +darklogleaves,18,1 +darktrunkleaves,18,1 +darkwoodleaves,18,1 +dtreeleaves,18,1 +dlogleaves,18,1 +dtrunkleaves,18,1 +dwoodleaves,18,1 +sprucetreeleaf,18,1 +sprucelogleaf,18,1 +sprucetrunkleaf,18,1 +sprucewoodleaf,18,1 +streeleaf,18,1 +slogleaf,18,1 +strunkleaf,18,1 +swoodleaf,18,1 +pinetreeleaf,18,1 +pinelogleaf,18,1 +pinetrunkleaf,18,1 +pinewoodleaf,18,1 +ptreeleaf,18,1 +plogleaf,18,1 +ptrunkleaf,18,1 +pwoodleaf,18,1 +darktreeleaf,18,1 +darklogleaf,18,1 +darktrunkleaf,18,1 +darkwoodleaf,18,1 +dtreeleaf,18,1 +dlogleaf,18,1 +dtrunkleaf,18,1 +dwoodleaf,18,1 +birchleaves,18,2 +birchleaf,18,2 +bleaves,18,2 +bleaf,18,2 +birchtreeleaves,18,2 +birchlogleaves,18,2 +birchtrunkleaves,18,2 +birchwoodleaves,18,2 +btreeleaves,18,2 +blogleaves,18,2 +btrunkleaves,18,2 +bwoodleaves,18,2 +lightleaves,18,2 +lightleaf,18,2 +lleaves,18,2 +lleaf,18,2 +lighttreeleaves,18,2 +lightlogleaves,18,2 +lighttrunkleaves,18,2 +lightwoodleaves,18,2 +ltreeleaves,18,2 +llogleaves,18,2 +ltrunkleaves,18,2 +lwoodleaves,18,2 +whiteleaves,18,2 +whiteleaf,18,2 +wleaves,18,2 +wleaf,18,2 +whitetreeleaves,18,2 +whitelogleaves,18,2 +whitetrunkleaves,18,2 +whitewoodleaves,18,2 +wtreeleaves,18,2 +wlogleaves,18,2 +wtrunkleaves,18,2 +wwoodleaves,18,2 +birchtreeleaf,18,2 +birchlogleaf,18,2 +birchtrunkleaf,18,2 +birchwoodleaf,18,2 +btreeleaf,18,2 +blogleaf,18,2 +btrunkleaf,18,2 +bwoodleaf,18,2 +lighttreeleaf,18,2 +lightlogleaf,18,2 +lighttrunkleaf,18,2 +lightwoodleaf,18,2 +ltreeleaf,18,2 +llogleaf,18,2 +ltrunkleaf,18,2 +lwoodleaf,18,2 +whitetreeleaf,18,2 +whitelogleaf,18,2 +whitetrunkleaf,18,2 +whitewoodleaf,18,2 +wtreeleaf,18,2 +wlogleaf,18,2 +wtrunkleaf,18,2 +wwoodleaf,18,2 +jungleleaves,18,3 +jungleleaf,18,3 +jleaves,18,3 +jleaf,18,3 +jungletreeleaves,18,3 +junglelogleaves,18,3 +jungletrunkleaves,18,3 +junglewoodleaves,18,3 +jtreeleaves,18,3 +jlogleaves,18,3 +jtrunkleaves,18,3 +jwoodleaves,18,3 +forestleaves,18,3 +forestleaf,18,3 +fleaves,18,3 +fleaf,18,3 +foresttreeleaves,18,3 +forestlogleaves,18,3 +foresttrunkleaves,18,3 +forestwoodleaves,18,3 +ftreeleaves,18,3 +flogleaves,18,3 +ftrunkleaves,18,3 +fwoodleaves,18,3 +jungletreeleaf,18,3 +junglelogleaf,18,3 +jungletrunkleaf,18,3 +junglewoodleaf,18,3 +jtreeleaf,18,3 +jlogleaf,18,3 +jtrunkleaf,18,3 +jwoodleaf,18,3 +foresttreeleaf,18,3 +forestlogleaf,18,3 +foresttrunkleaf,18,3 +forestwoodleaf,18,3 +ftreeleaf,18,3 +flogleaf,18,3 +ftrunkleaf,18,3 +fwoodleaf,18,3 +sponge,19,0 +glass,20,0 +blockglass,20,0 +glassblock,20,0 +lapislazuliore,21,0 +lapislazulio,21,0 +orelapislazuli,21,0 +olapislazuli,21,0 +lapisore,21,0 +lapiso,21,0 +orelapis,21,0 +olapis,21,0 +lore,21,0 +orel,21,0 +lapislazuliblock,22,0 +blocklapislazuli,22,0 +lapisblock,22,0 +blocklapis,22,0 +lblock,22,0 +blockl,22,0 +dispenser,23,0 +dispense,23,0 +sandstone,24,0 +sastone,24,0 +creepersandstone,24,1 +creepersastone,24,1 +creepsandstone,24,1 +creepsastone,24,1 +csandstone,24,1 +csastone,24,1 +hieroglyphicsandstone,24,1 +hieroglyphicsastone,24,1 +hieroglyphsandstone,24,1 +hieroglyphsastone,24,1 +hsandstone,24,1 +hsastone,24,1 +pyramidsandstone,24,1 +pyramidsastone,24,1 +psandstone,24,1 +psastone,24,1 +chiseledsandstone,24,1 +chiseledsastone,24,1 +chiselsandstone,24,1 +chiselsastone,24,1 +smoothsandstone,24,2 +smoothsastone,24,2 +ssandstone,24,2 +smsastone,24,2 +ssastone,24,2 +noteblock,25,0 +musicblock,25,0 +nblock,25,0 +mblock,25,0 +poweredtrack,27,0 +poweredrails,27,0 +poweredrail,27,0 +boostertrack,27,0 +boosterrails,27,0 +boosterrail,27,0 +powertrack,27,0 +powerrails,27,0 +powerrail,27,0 +boosttrack,27,0 +boostrails,27,0 +boostrail,27,0 +ptrack,27,0 +prails,27,0 +prail,27,0 +btrack,27,0 +brails,27,0 +brail,27,0 +detectortrack,28,0 +detectorrails,28,0 +detectorrail,28,0 +detectingtrack,28,0 +detectingrails,28,0 +detectingrail,28,0 +detecttrack,28,0 +detectrails,28,0 +detectrail,28,0 +dtrack,28,0 +drails,28,0 +drail,28,0 +stickypistonbase,29,0 +stickypiston,29,0 +stickpistonbase,29,0 +stickpiston,29,0 +stickyp,29,0 +spistonbase,29,0 +spiston,29,0 +pistonstickybase,29,0 +pistonsticky,29,0 +pistonstickbase,29,0 +pistonstick,29,0 +pistonsbase,29,0 +pistons,29,0 +psticky,29,0 +pstick,29,0 +spiderweb,30,0 +cobweb,30,0 +sweb,30,0 +cweb,30,0 +web,30,0 +longgrass,31,1 +tallgrass,31,1 +wildgrass,31,1 +grasslong,31,1 +grasstall,31,1 +grasswild,31,1 +lgrass,31,1 +tgrass,31,1 +wgrass,31,1 +fern,31,2 +bush,31,2 +deadshrub,32,0 +dshrub,32,0 +deadbush,32,0 +dbush,32,0 +deadsapling,32,0 +piston,33,0 +pistonbase,33,0 +pistonblock,33,0 +whitewool,35,0 +whitecloth,35,0 +whitecotton,35,0 +wcloth,35,0 +wwool,35,0 +wcotton,35,0 +cloth,35,0 +wool,35,0 +cotton,35,0 +orangewool,35,1 +orangecloth,35,1 +orangecotton,35,1 +ocloth,35,1 +owool,35,1 +ocotton,35,1 +magentawool,35,2 +magentacloth,35,2 +magentacotton,35,2 +mcloth,35,2 +mwool,35,2 +mcotton,35,2 +lightbluewool,35,3 +lightbluecloth,35,3 +lightbluecotton,35,3 +lbluecloth,35,3 +lbluewool,35,3 +lbluecotton,35,3 +lightblucloth,35,3 +lightbluwool,35,3 +lightblucotton,35,3 +lblucloth,35,3 +lbluwool,35,3 +lblucotton,35,3 +lbcloth,35,3 +lbwool,35,3 +lbcotton,35,3 +yellowwool,35,4 +yellowcloth,35,4 +yellowcotton,35,4 +ycloth,35,4 +ywool,35,4 +ycotton,35,4 +lightgreenwool,35,5 +lightgreencloth,35,5 +lightgreencotton,35,5 +lgreencloth,35,5 +lgreenwool,35,5 +lgreencotton,35,5 +lightgrecloth,35,5 +lightgrewool,35,5 +lightgrecotton,35,5 +lgrecloth,35,5 +lgrewool,35,5 +lgrecotton,35,5 +limecloth,35,5 +limewool,35,5 +limecotton,35,5 +lcloth,35,5 +lwool,35,5 +lcotton,35,5 +pinkwool,35,6 +pinkcloth,35,6 +pinkcotton,35,6 +picloth,35,6 +piwool,35,6 +picotton,35,6 +darkgraywool,35,7 +darkgraycloth,35,7 +darkgraycotton,35,7 +darkgreywool,35,7 +darkgreycloth,35,7 +darkgreycotton,35,7 +dgraycloth,35,7 +dgraywool,35,7 +dgraycotton,35,7 +dgreycloth,35,7 +dgreywool,35,7 +dgreycotton,35,7 +darkgracloth,35,7 +darkgrawool,35,7 +darkgracotton,35,7 +dgracloth,35,7 +dgrawool,35,7 +dgracotton,35,7 +graycloth,35,7 +graywool,35,7 +graycotton,35,7 +greycloth,35,7 +greywool,35,7 +greycotton,35,7 +gracloth,35,7 +grawool,35,7 +gracotton,35,7 +lightgraywool,35,8 +lightgraycloth,35,8 +lightgraycotton,35,8 +lgraycloth,35,8 +lgraywool,35,8 +lgraycotton,35,8 +lightgreywool,35,8 +lightgreycloth,35,8 +lightgreycotton,35,8 +lgreycloth,35,8 +lgreywool,35,8 +lgreycotton,35,8 +lightgracloth,35,8 +lightgrawool,35,8 +lightgracotton,35,8 +lgracloth,35,8 +lgrawool,35,8 +lgracotton,35,8 +silvercloth,35,8 +silverwool,35,8 +silvercotton,35,8 +sicloth,35,8 +siawool,35,8 +siacotton,35,8 +cyanwool,35,9 +cyancloth,35,9 +cyancotton,35,9 +ccloth,35,9 +cwool,35,9 +ccotton,35,9 +purplewool,35,10 +purplecloth,35,10 +purplecotton,35,10 +pucloth,35,10 +puwool,35,10 +pucotton,35,10 +bluewool,35,11 +bluecloth,35,11 +bluecotton,35,11 +blucloth,35,11 +bluwool,35,11 +blucotton,35,11 +brownwool,35,12 +browncloth,35,12 +browncotton,35,12 +brocloth,35,12 +browool,35,12 +brocotton,35,12 +darkgreenwool,35,13 +darkgreencloth,35,13 +darkgreencotton,35,13 +dgreencloth,35,13 +dgreenwool,35,13 +dgreencotton,35,13 +greencloth,35,13 +greenwool,35,13 +greencotton,35,13 +darkgrecloth,35,13 +darkgrewool,35,13 +darkgrecotton,35,13 +dgrecloth,35,13 +dgrewool,35,13 +dgrecotton,35,13 +grecloth,35,13 +grewool,35,13 +grecotton,35,13 +redwool,35,14 +redcloth,35,14 +redcotton,35,14 +rcloth,35,14 +rwool,35,14 +rcotton,35,14 +blackwool,35,15 +blackcloth,35,15 +blackcotton,35,15 +blacloth,35,15 +blawool,35,15 +blacotton,35,15 +dandelion,37,0 +yellowdandelion,37,0 +ydandelion,37,0 +yellowflower,37,0 +yflower,37,0 +flower,37,0 +rose,38,0 +redrose,38,0 +rrose,38,0 +redflower,38,0 +rflower,38,0 +poppy,38,0 +redpoppy,38,0 +blueorchid,38,1 +cyanorchid,38,1 +lightblueorchid,38,1 +lblueorchid,38,1 +orchid,38,1 +allium,38,2 +magentaallium,38,2 +azurebluet,38,3 +whiteazurebluet,38,3 +redtulip,38,4 +rtulip,38,4 +orangetulip,38,5 +otulip,38,5 +whitetulip,38,6 +wtulip,38,6 +pinktulip,38,7 +ptulip,38,7 +oxeye,38,8 +lightgrayoxeye,38,8 +lgrayoxeye,38,8 +lightgreyoxeye,38,8 +lgreyoxeye,38,8 +brownmushroom,39,0 +brownshroom,39,0 +brownmush,39,0 +bmushroom,39,0 +bshroom,39,0 +bmush,39,0 +redmushroom,40,0 +redshroom,40,0 +redmush,40,0 +rmushroom,40,0 +rshroom,40,0 +rmush,40,0 +goldblock,41,0 +blockgold,41,0 +gblock,41,0 +blockg,41,0 +ironblock,42,0 +steelblock,42,0 +blockiron,42,0 +blocksteel,42,0 +iblock,42,0 +stblock,42,0 +blocki,42,0 +blockst,42,0 +stonedoublestep,43,0 +stonedstep,43,0 +sdoublestep,43,0 +sdstep,43,0 +doublestonestep,43,0 +dstonestep,43,0 +doublesstep,43,0 +doublestep,43,0 +dstep,43,0 +stonedoubleslab,43,0 +stonedslab,43,0 +sdoubleslab,43,0 +sdslab,43,0 +doublestoneslab,43,0 +dstoneslab,43,0 +doublesslab,43,0 +doubleslab,43,0 +dslab,43,0 +stonedoublehalfblock,43,0 +stonedhalfblock,43,0 +sdoublehalfblock,43,0 +sdhalfblock,43,0 +doublestonehalfblock,43,0 +dstonehalfblock,43,0 +doubleshalfblock,43,0 +doublehalfblock,43,0 +dhalfblock,43,0 +sandstonedoublestep,43,1 +sandstonedstep,43,1 +sstonedoublestep,43,1 +sstonedstep,43,1 +ssdoublestep,43,1 +ssdstep,43,1 +doublesandstonestep,43,1 +dsandstonestep,43,1 +doublesstonestep,43,1 +dsstonestep,43,1 +doublessstep,43,1 +dsstep,43,1 +sandstonedoubleslab,43,1 +sandstonedslab,43,1 +sstonedoubleslab,43,1 +sstonedslab,43,1 +ssdoubleslab,43,1 +ssdslab,43,1 +doublesandstoneslab,43,1 +dsandstoneslab,43,1 +doublesstoneslab,43,1 +dsstoneslab,43,1 +doublessslab,43,1 +dsslab,43,1 +sandstonedoublehalfblock,43,1 +sandstonedhalfblock,43,1 +sstonedoublehalfblock,43,1 +sstonedhalfblock,43,1 +ssdoublehalfblock,43,1 +ssdhalfblock,43,1 +doublesandstonehalfblock,43,1 +dsandstonehalfblock,43,1 +doublesstonehalfblock,43,1 +dsstonehalfblock,43,1 +doublesshalfblock,43,1 +dsshalfblock,43,1 +plankstonedoublestep,43,2 +woodenstonedoublestep,43,2 +woodenstonedstep,43,2 +woodstonedoublestep,43,2 +woodstonedstep,43,2 +wstonedoublestep,43,2 +wstonedstep,43,2 +doublewoodenstonestep,43,2 +dwoodenstonestep,43,2 +doublewoodstonestep,43,2 +dwoodstonestep,43,2 +doublewstonestep,43,2 +dwstonestep,43,2 +woodenstonedoubleslab,43,2 +woodenstonedslab,43,2 +woodstonedoubleslab,43,2 +woodstonedslab,43,2 +wstonedoubleslab,43,2 +wstonedslab,43,2 +doublewoodenstoneslab,43,2 +dwoodenstoneslab,43,2 +doublewoodstoneslab,43,2 +dwoodstoneslab,43,2 +doublewstoneslab,43,2 +dwstoneslab,43,2 +woodenstonedoublehalfblock,43,2 +woodenstonedhalfblock,43,2 +woodstonedoublehalfblock,43,2 +woodstonedhalfblock,43,2 +wstonedoublehalfblock,43,2 +wstonedhalfblock,43,2 +doublewoodenstonehalfblock,43,2 +dwoodenstonehalfblock,43,2 +doublewoodstonehalfblock,43,2 +dwoodstonehalfblock,43,2 +doublewstonehalfblock,43,2 +dwstonehalfblock,43,2 +cobblestonedoublestep,43,3 +cobblestonedstep,43,3 +cobbledoublestep,43,3 +cobbledstep,43,3 +cstonedoublestep,43,3 +cstonedstep,43,3 +csdoublestep,43,3 +csdstep,43,3 +doublecobblestonestep,43,3 +dcobblestonestep,43,3 +doublecobblestep,43,3 +dcobblestep,43,3 +doublecstonestep,43,3 +dcstonestep,43,3 +doublecsstep,43,3 +dcsstep,43,3 +cobblestonedoubleslab,43,3 +cobblestonedslab,43,3 +cobbledoubleslab,43,3 +cobbledslab,43,3 +cstonedoubleslab,43,3 +cstonedslab,43,3 +csdoubleslab,43,3 +csdslab,43,3 +doublecobblestoneslab,43,3 +dcobblestoneslab,43,3 +doublecobbleslab,43,3 +dcobbleslab,43,3 +doublecstoneslab,43,3 +dcstoneslab,43,3 +doublecsslab,43,3 +dcsslab,43,3 +cobblestonedoublehalfblock,43,3 +cobblestonedhalfblock,43,3 +cobbledoublehalfblock,43,3 +cobbledhalfblock,43,3 +cstonedoublehalfblock,43,3 +cstonedhalfblock,43,3 +csdoublehalfblock,43,3 +csdhalfblock,43,3 +doublecobblestonehalfblock,43,3 +dcobblestonehalfblock,43,3 +doublecobblehalfblock,43,3 +dcobblehalfblock,43,3 +doublecstonehalfblock,43,3 +dcstonehalfblock,43,3 +doublecshalfblock,43,3 +dcshalfblock,43,3 +brickdoublestep,43,4 +brickdstep,43,4 +bdoublestep,43,4 +bdstep,43,4 +brickdoubleslab,43,4 +brickdslab,43,4 +bdoubleslab,43,4 +bdslab,43,4 +doublebrickstep,43,4 +dbrickstep,43,4 +doublebstep,43,4 +dbstep,43,4 +doublebrickslab,43,4 +dbrickslab,43,4 +doublebslab,43,4 +dbslab,43,4 +brickdoublehalfblock,43,4 +brickdhalfblock,43,4 +bdoublehalfblock,43,4 +bdhalfblock,43,4 +doublebrickhalfblock,43,4 +dbrickhalfblock,43,4 +doublebhalfblock,43,4 +dbhalfblock,43,4 +stonebrickdoublestep,43,5 +stonebrickdstep,43,5 +stonebdoublestep,43,5 +stonebdstep,43,5 +sbrickdoublestep,43,5 +sbrickdstep,43,5 +sbdoublestep,43,5 +sbdstep,43,5 +stonebrickdoubleslab,43,5 +stonebrickdslab,43,5 +stonebdoubleslab,43,5 +stonebdslab,43,5 +sbrickdoubleslab,43,5 +sbrickdslab,43,5 +sbdoubleslab,43,5 +sbdslab,43,5 +doublestonebrickstep,43,5 +dstonebrickstep,43,5 +doublestonebstep,43,5 +dstonebstep,43,5 +doublesbrickstep,43,5 +dsbrickstep,43,5 +doublesbstep,43,5 +dsbstep,43,5 +doublestonebrickslab,43,5 +dstonebrickslab,43,5 +doublestonebslab,43,5 +dstonebslab,43,5 +doublesbrickslab,43,5 +dsbrickdslab,43,5 +doublesbslab,43,5 +dsbslab,43,5 +stonebrickdoublehalfblock,43,5 +stonebrickdhalfblock,43,5 +stonebdoublehalfblock,43,5 +stonebdhalfblock,43,5 +sbrickdoublehalfblock,43,5 +sbrickdhalfblock,43,5 +sbdoublehalfblock,43,5 +sbdhalfblock,43,5 +doublestonebrickhalfblock,43,5 +dstonebrickhalfblock,43,5 +doublestonebhalfblock,43,5 +dstonebhalfblock,43,5 +doublesbrickhalfblock,43,5 +dsbrickhalfblock,43,5 +doublesbhalfblock,43,5 +dsbhalfblock,43,5 +netherbrickdoubleslab,43,6 +hellbrickdoubleslab,43,6 +nbrickdoubleslab,43,6 +hbrickdoubleslab,43,6 +netherdoubleslab,43,6 +helldoubleslab,43,6 +nbdoubleslab,43,6 +hbdoubleslab,43,6 +hdoubleslab,43,6 +ndoubleslab,43,6 +netherbrickdoublestep,43,6 +hellbrickdoublestep,43,6 +nbrickdoublestep,43,6 +hbrickdoublestep,43,6 +netherdoublestep,43,6 +helldoublestep,43,6 +nbdoublestep,43,6 +hbdoublestep,43,6 +ndoublestep,43,6 +hdoublestep,43,6 +netherbrickdoublehalfblock,43,6 +hellbrickdoublehalfblock,43,6 +nbrickdoublehalfblock,43,6 +hbrickdoublehalfblock,43,6 +netherdoublehalfblock,43,6 +helldoublehalfblock,43,6 +nbdoublehalfblock,43,6 +hbdoublehalfblock,43,6 +ndoublehalfblock,43,6 +hdoublehalfblock,43,6 +netherbrickdslab,43,6 +hellbrickdslab,43,6 +nbrickdslab,43,6 +hbrickdslab,43,6 +netherdslab,43,6 +helldslab,43,6 +nbdslab,43,6 +hbdslab,43,6 +hdslab,43,6 +ndslab,43,6 +netherbrickdstep,43,6 +hellbrickdstep,43,6 +nbrickdstep,43,6 +hbrickdstep,43,6 +netherdstep,43,6 +helldstep,43,6 +nbdstep,43,6 +hbdstep,43,6 +ndstep,43,6 +hdstep,43,6 +netherbrickdhalfblock,43,6 +hellbrickdhalfblock,43,6 +nbrickdhalfblock,43,6 +hbrickdhalfblock,43,6 +netherdhalfblock,43,6 +helldhalfblock,43,6 +nbdhalfblock,43,6 +hbdhalfblock,43,6 +ndhalfblock,43,6 +hdhalfblock,43,6 +doublenetherbrickslab,43,6 +doublehellbrickslab,43,6 +doublenbrickslab,43,6 +doublehbrickslab,43,6 +doublenetherslab,43,6 +doublehellslab,43,6 +doublenbslab,43,6 +doublehbslab,43,6 +doublehslab,43,6 +doublenslab,43,6 +doublenetherbrickstep,43,6 +doublehellbrickstep,43,6 +doublenbrickstep,43,6 +doublehbrickstep,43,6 +doublenetherstep,43,6 +doublehellstep,43,6 +doublenbstep,43,6 +doublehbstep,43,6 +doublenstep,43,6 +doublehstep,43,6 +doublenetherbrickhalfblock,43,6 +doublehellbrickhalfblock,43,6 +doublenbrickhalfblock,43,6 +doublehbrickhalfblock,43,6 +doublenetherhalfblock,43,6 +doublehellhalfblock,43,6 +doublenbhalfblock,43,6 +doublehbhalfblock,43,6 +doublenhalfblock,43,6 +doublehhalfblock,43,6 +dnetherbrickslab,43,6 +dhellbrickslab,43,6 +dnbrickslab,43,6 +dhbrickslab,43,6 +dnetherslab,43,6 +dhellslab,43,6 +dnbslab,43,6 +dhbslab,43,6 +dhslab,43,6 +dnslab,43,6 +dnetherbrickstep,43,6 +dhellbrickstep,43,6 +dnbrickstep,43,6 +dhbrickstep,43,6 +dnetherstep,43,6 +dhellstep,43,6 +dnbstep,43,6 +dhbstep,43,6 +dnstep,43,6 +dhstep,43,6 +dnetherbrickhalfblock,43,6 +dhellbrickhalfblock,43,6 +dnbrickhalfblock,43,6 +dhbrickhalfblock,43,6 +dnetherhalfblock,43,6 +dhellhalfblock,43,6 +dnbhalfblock,43,6 +dhbhalfblock,43,6 +dnhalfblock,43,6 +dhhalfblock,43,6 +netherquartzdoublestep,43,7 +hellquartzdoublestep,43,7 +deathquartzdoublestep,43,7 +nquartzdoublestep,43,7 +hquartzdoublestep,43,7 +dquartzdoublestep,43,7 +quartzdoublestep,43,7 +nqdoublestep,43,7 +hqdoublestep,43,7 +dqdoublestep,43,7 +qdoublestep,43,7 +netherquartzdoubleslab,43,7 +hellquartzdoubleslab,43,7 +deathquartzdoubleslab,43,7 +nquartzdoubleslab,43,7 +hquartzdoubleslab,43,7 +dquartzdoubleslab,43,7 +quartzdoubleslab,43,7 +nqdoubleslab,43,7 +hqdoubleslab,43,7 +dqdoubleslab,43,7 +qdoubleslab,43,7 +netherquartzdoublehalfblock,43,7 +hellquartzdoublehalfblock,43,7 +deathquartzdoublehalfblock,43,7 +nquartzdoublehalfblock,43,7 +hquartzdoublehalfblock,43,7 +dquartzdoublehalfblock,43,7 +quartzdoublehalfblock,43,7 +nqdoublehalfblock,43,7 +hqdoublehalfblock,43,7 +dqdoublehalfblock,43,7 +qdoublehalfblock,43,7 +netherquartzdslab,43,7 +hellquartzdslab,43,7 +deathquartzdslab,43,7 +nquartzdslab,43,7 +hquartzdslab,43,7 +dquartzdslab,43,7 +quartzdslab,43,7 +nqdslab,43,7 +hqdslab,43,7 +dqdslab,43,7 +qdslab,43,7 +netherquartzdstep,43,7 +hellquartzdstep,43,7 +deathquartzdstep,43,7 +nquartzdstep,43,7 +hquartzdstep,43,7 +dquartzdstep,43,7 +quartzdstep,43,7 +nqdstep,43,7 +hqdstep,43,7 +dqdstep,43,7 +qdstep,43,7 +netherquartzdhalfblock,43,7 +hellquartzdhalfblock,43,7 +deathquartzdhalfblock,43,7 +nquartzdhalfblock,43,7 +hquartzdhalfblock,43,7 +dquartzdhalfblock,43,7 +quartzdhalfblock,43,7 +nqdhalfblock,43,7 +hqdhalfblock,43,7 +dqdhalfblock,43,7 +qdhalfblock,43,7 +doublenetherquartzslab,43,7 +doublehellquartzslab,43,7 +doubledeathquartzslab,43,7 +doublenquartzslab,43,7 +doublehquartzslab,43,7 +doubledquartzslab,43,7 +doublequartzslab,43,7 +doublenqslab,43,7 +doublehqslab,43,7 +doubledqslab,43,7 +doubleqslab,43,7 +doublenetherquartzstep,43,7 +doublehellquartzstep,43,7 +doubledeathquartzstep,43,7 +doublenquartzstep,43,7 +doublehquartzstep,43,7 +doubledquartzstep,43,7 +doublequartzstep,43,7 +doublenqstep,43,7 +doublehqstep,43,7 +doubledqstep,43,7 +doubleqstep,43,7 +doublenetherquartzhalfblock,43,7 +doublehellquartzhalfblock,43,7 +doubledeathquartzhalfblock,43,7 +doublenquartzhalfblock,43,7 +doublehquartzhalfblock,43,7 +doubledquartzhalfblock,43,7 +doublequartzhalfblock,43,7 +doublenqhalfblock,43,7 +doublehqhalfblock,43,7 +doubledqhalfblock,43,7 +doubleqhalfblock,43,7 +dnetherquartzslab,43,7 +dhellquartzslab,43,7 +ddeathquartzslab,43,7 +dnquartzslab,43,7 +dhquartzslab,43,7 +ddquartzslab,43,7 +dnqslab,43,7 +dhqslab,43,7 +ddqslab,43,7 +dnetherquartzstep,43,7 +dhellquartzstep,43,7 +ddeathquartzstep,43,7 +dnquartzstep,43,7 +dhquartzstep,43,7 +ddquartzstep,43,7 +dnqstep,43,7 +dhqstep,43,7 +ddqstep,43,7 +dnetherquartzhalfblock,43,7 +dhellquartzhalfblock,43,7 +ddeathquartzhalfblock,43,7 +dnquartzhalfblock,43,7 +dhquartzhalfblock,43,7 +ddquartzhalfblock,43,7 +dnqhalfblock,43,7 +dhqhalfblock,43,7 +ddqhalfblock,43,7 +smoothstonedoubleslab,43,8 +smoothstonedoublestep,43,8 +smoothstonedoublehalfblock,43,8 +smoothstonedslab,43,8 +smoothstonedstep,43,8 +smoothstonedhalfblock,43,8 +doublesmoothstoneslab,43,8 +doublesmoothstonestep,43,8 +doublesmoothstonehalfblock,43,8 +dsmoothstoneslab,43,8 +dsmoothstonestep,43,8 +dsmoothstonehalfblock,43,8 +smoothsandstonedoubleslab,43,9 +ssandstonedoubleslab,43,9 +ssstonedoubleslab,43,9 +sssdoubleslab,43,9 +smoothsandstonedoublestep,43,9 +ssandstonedoublestep,43,9 +ssstonedoublestep,43,9 +sssdoublestep,43,9 +smoothsandstonedoublehalfblock,43,9 +ssandstonedoublehalfblock,43,9 +ssstonedoublehalfblock,43,9 +sssdoublehalfblock,43,9 +smoothsandstonedslab,43,9 +ssandstonedslab,43,9 +ssstonedslab,43,9 +sssdslab,43,9 +smoothsandstonedstep,43,9 +ssandstonedstep,43,9 +ssstonedstep,43,9 +sssdstep,43,9 +smoothsandstonedhalfblock,43,9 +ssandstonedhalfblock,43,9 +ssstonedhalfblock,43,9 +sssdhalfblock,43,9 +doublesmoothsandstoneslab,43,9 +doublessandstoneslab,43,9 +doublessstoneslab,43,9 +doublesssslab,43,9 +doublesmoothsandstonestep,43,9 +doublessandstonestep,43,9 +doublessstonestep,43,9 +doublesssstep,43,9 +doublesmoothsandstonehalfblock,43,9 +doublessandstonehalfblock,43,9 +doublessstonehalfblock,43,9 +doublessshalfblock,43,9 +dsmoothsandstoneslab,43,9 +dssandstoneslab,43,9 +dssstoneslab,43,9 +dsssslab,43,9 +dsmoothsandstonestep,43,9 +dssandstonestep,43,9 +dssstonestep,43,9 +dsssstep,43,9 +dsmoothsandstonehalfblock,43,9 +dssandstonehalfblock,43,9 +dssstonehalfblock,43,9 +dssshalfblock,43,9 +smoothstonestep,44,0 +stonestep,44,0 +sstep,44,0 +step,44,0 +smoothstoneslab,44,0 +stoneslab,44,0 +sslab,44,0 +slab,44,0 +smoothstonehalfblock,44,0 +stonehalfblock,44,0 +shalfblock,44,0 +halfblock,44,0 +sandstonestep,44,1 +sstonestep,44,1 +ssstep,44,1 +sandstoneslab,44,1 +sstoneslab,44,1 +ssslab,44,1 +sandstonehalfblock,44,1 +sstonehalfblock,44,1 +sshalfblock,44,1 +woodenstonestep,44,2 +woodstonestep,44,2 +wstonestep,44,2 +woodenstoneslab,44,2 +woodstoneslab,44,2 +wstoneslab,44,2 +woodenstonehalfblock,44,2 +woodstonehalfblock,44,2 +wstonehalfblock,44,2 +cobblestonestep,44,3 +cobblestep,44,3 +cstonestep,44,3 +csstep,44,3 +cobblestoneslab,44,3 +cobbleslab,44,3 +cstoneslab,44,3 +csslab,44,3 +cobblestonehalfblock,44,3 +cobblehalfblock,44,3 +cstonehalfblock,44,3 +cshalfblock,44,3 +brickstep,44,4 +bstep,44,4 +brickslab,44,4 +bslab,44,4 +brickhalfblock,44,4 +bhalfblock,44,4 +stonebrickstep,44,5 +stonebstep,44,5 +sbrickstep,44,5 +sbstep,44,5 +stonebrickslab,44,5 +stonebslab,44,5 +sbrickslab,44,5 +sbslab,44,5 +stonebrickhalfblock,44,5 +stonebhalfblock,44,5 +sbrickhalfblock,44,5 +sbhalfblock,44,5 +netherbrickslab,44,6 +hellbrickslab,44,6 +nbrickslab,44,6 +hbrickslab,44,6 +netherslab,44,6 +hellslab,44,6 +nbslab,44,6 +hbslab,44,6 +hslab,44,6 +nslab,44,6 +netherbrickstep,44,6 +hellbrickstep,44,6 +nbrickstep,44,6 +hbrickstep,44,6 +netherstep,44,6 +hellstep,44,6 +nbstep,44,6 +hbstep,44,6 +nstep,44,6 +hstep,44,6 +netherbrickhalfblock,44,6 +hellbrickhalfblock,44,6 +nbrickhalfblock,44,6 +hbrickhalfblock,44,6 +netherhalfblock,44,6 +hellhalfblock,44,6 +nbhalfblock,44,6 +hbhalfblock,44,6 +nhalfblock,44,6 +hhalfblock,44,6 +netherquartzstep,44,7 +hellquartzstep,44,7 +deathquartzstep,44,7 +nquartzstep,44,7 +hquartzstep,44,7 +dquartzstep,44,7 +quartzstep,44,7 +nqstep,44,7 +hqstep,44,7 +dqstep,44,7 +qstep,44,7 +netherquartzslab,44,7 +hellquartzslab,44,7 +deathquartzslab,44,7 +nquartzslab,44,7 +hquartzslab,44,7 +dquartzslab,44,7 +quartzslab,44,7 +nqslab,44,7 +hqslab,44,7 +dqslab,44,7 +qslab,44,7 +netherquartzhalfblock,44,7 +hellquartzhalfblock,44,7 +deathquartzhalfblock,44,7 +nquartzhalfblock,44,7 +hquartzhalfblock,44,7 +dquartzhalfblock,44,7 +quartzhalfblock,44,7 +nqhalfblock,44,7 +hqhalfblock,44,7 +dqhalfblock,44,7 +qhalfblock,44,7 +brickblock,45,0 +blockbrick,45,0 +bblock,45,0 +blockb,45,0 +tnt,46,0 +tntblock,46,0 +blocktnt,46,0 +bombblock,46,0 +blockbomb,46,0 +dynamiteblock,46,0 +blockdynamite,46,0 +bomb,46,0 +dynamite,46,0 +bookcase,47,0 +casebook,47,0 +bookshelf,47,0 +shelfbook,47,0 +bookblock,47,0 +blockbook,47,0 +mossycobblestone,48,0 +mosscobblestone,48,0 +mcobblestone,48,0 +mossycobble,48,0 +mosscobble,48,0 +mcobble,48,0 +mossstone,48,0 +mossystone,48,0 +mstone,48,0 +obsidian,49,0 +obsi,49,0 +obby,49,0 +torch,50,0 +burningstick,50,0 +burnstick,50,0 +fire,51,0 +flame,51,0 +flames,51,0 +mobspawner,52,0 +mobcage,52,0 +monsterspawner,52,0 +monstercage,52,0 +mspawner,52,0 +mcage,52,0 +spawner,52,0 +cage,52,0 +woodenstairs,53,0 +woodstairs,53,0 +wstairs,53,0 +woodenstair,53,0 +woodstair,53,0 +wstair,53,0 +chest,54,0 +container,54,0 +diamondore,56,0 +crystalore,56,0 +orediamond,56,0 +orecrystal,56,0 +dore,56,0 +ored,56,0 +diamondblock,57,0 +blockdiamond,57,0 +crystalblock,57,0 +blockcrystal,57,0 +dblock,57,0 +blockd,57,0 +workbench,58,0 +craftingbench,58,0 +crafterbench,58,0 +craftbench,58,0 +worktable,58,0 +craftingtable,58,0 +craftertable,58,0 +crafttable,58,0 +wbench,58,0 +cbench,58,0 +soil,60,0 +furnace,61,0 +litfurnace,62,0 +lfurnace,62,0 +burningfurnace,62,0 +burnfurnace,62,0 +bfurnace,62,0 +ladder,65,0 +minecarttrack,66,0 +minecartrails,66,0 +minecartrail,66,0 +mcarttrack,66,0 +mcartrails,66,0 +mcartrail,66,0 +mctrack,66,0 +mcrails,66,0 +mcrail,66,0 +track,66,0 +rails,66,0 +rail,66,0 +cobblestonestairs,67,0 +cstonestairs,67,0 +stonestairs,67,0 +cobblestairs,67,0 +csstairs,67,0 +sstairs,67,0 +cstairs,67,0 +cobblestonestair,67,0 +cstonestair,67,0 +stonestair,67,0 +cobblestair,67,0 +csstair,67,0 +sstair,67,0 +cstair,67,0 +lever,69,0 +stonepressureplate,70,0 +stonepressplate,70,0 +stonepplate,70,0 +stoneplate,70,0 +spressureplate,70,0 +spressplate,70,0 +spplate,70,0 +splate,70,0 +smoothstonepressureplate,70,0 +smoothstonepressplate,70,0 +smoothstonepplate,70,0 +smoothstoneplate,70,0 +sstonepressureplate,70,0 +sstonepressplate,70,0 +sstonepplate,70,0 +sstoneplate,70,0 +woodenpressureplate,72,0 +woodenpressplate,72,0 +woodenpplate,72,0 +woodenplate,72,0 +woodpressureplate,72,0 +woodpressplate,72,0 +woodpplate,72,0 +woodplate,72,0 +wpressureplate,72,0 +wpressplate,72,0 +wpplate,72,0 +wplate,72,0 +redstoneore,73,0 +redsore,73,0 +redore,73,0 +rstoneore,73,0 +rsore,73,0 +rore,73,0 +oreredstone,73,0 +orereds,73,0 +orered,73,0 +orerstone,73,0 +orers,73,0 +orer,73,0 +redstonetorch,76,0 +rstonetorch,76,0 +redstorch,76,0 +redtorch,76,0 +rstorch,76,0 +stonebutton,77,0 +smoothstonebutton,77,0 +sstonebutton,77,0 +sbutton,77,0 +button,77,0 +snowcover,78,0 +snowcovering,78,0 +scover,78,0 +ice,79,0 +frozenwater,79,0 +waterfrozen,79,0 +freezewater,79,0 +waterfreeze,79,0 +snowblock,80,0 +blocksnow,80,0 +sblock,80,0 +blocks,80,0 +cactus,81,0 +cactuses,81,0 +cacti,81,0 +clayblock,82,0 +blockclay,82,0 +cblock,82,0 +blockc,82,0 +jukebox,84,0 +jbox,84,0 +woodenfence,85,0 +fence,85,0 +woodfence,85,0 +wfence,85,0 +fencewooden,85,0 +fencewood,85,0 +fencew,85,0 +pumpkin,86,0 +netherrack,87,0 +netherrock,87,0 +netherstone,87,0 +hellrack,87,0 +hellrock,87,0 +hellstone,87,0 +deathrack,87,0 +deathrock,87,0 +deathstone,87,0 +nrack,87,0 +nrock,87,0 +nstone,87,0 +hrack,87,0 +hrock,87,0 +hstone,87,0 +drack,87,0 +drock,87,0 +dstone,87,0 +soulsand,88,0 +slowsand,88,0 +slowmud,88,0 +ssand,88,0 +smud,88,0 +mud,88,0 +glowstone,89,0 +glowingstoneblock,89,0 +lightstoneblock,89,0 +glowstoneblock,89,0 +blockglowingstone,89,0 +blocklightstone,89,0 +blockglowstone,89,0 +glowingstone,89,0 +lightstone,89,0 +glowingblock,89,0 +lightblock,89,0 +glowblock,89,0 +lstone,89,0 +gstone,89,0 +portal,90,0 +jackolantern,91,0 +pumpkinlantern,91,0 +glowingpumpkin,91,0 +lightpumpkin,91,0 +jpumpkin,91,0 +plantren,91,0 +glowpumpkin,91,0 +gpumpkin,91,0 +lpumpkin,91,0 +lockedchest,95,0 +lockchest,95,0 +jokechest,95,0 +whiteglass,95,0 +whitesglass,95,0 +whitestainedglass,95,0 +wglass,95,0 +wsglass,95,0 +wstainedglass,95,0 +sglass,95,0 +stainedglass,95,0 +orangeglass,95,1 +orangesglass,95,1 +orangestainedglass,95,1 +oglass,95,1 +osglass,95,1 +ostainedglass,95,1 +magentaglass,95,2 +magentasglass,95,2 +magentastainedglass,95,2 +mglass,95,2 +msglass,95,2 +mstainedglass,95,2 +lightblueglass,95,3 +lightbluesglass,95,3 +lightbluestainedglass,95,3 +lblueglass,95,3 +lbluesglass,95,3 +lbluestainedglass,95,3 +lightbluglass,95,3 +lightblusglass,95,3 +lightblustainedglass,95,3 +lbluglass,95,3 +lblusglass,95,3 +lblustainedglass,95,3 +lbglass,95,3 +lbsglass,95,3 +lbstainedglass,95,3 +yellowglass,95,4 +yellowsglass,95,4 +yellowstainedglass,95,4 +yglass,95,4 +ysglass,95,4 +ystainedglass,95,4 +lightgreenglass,95,5 +lightgreensglass,95,5 +lightgreenstainedglass,95,5 +lgreenglass,95,5 +lgreensglass,95,5 +lgreenstainedglass,95,5 +lightgreglass,95,5 +lightgresglass,95,5 +lightgrestainedglass,95,5 +lgreglass,95,5 +lgresglass,95,5 +lgrestainedglass,95,5 +limeglass,95,5 +limesglass,95,5 +limestainedglass,95,5 +lglass,95,5 +lsglass,95,5 +lstainedglass,95,5 +pinkglass,95,6 +pinksglass,95,6 +pinkstainedglass,95,6 +piglass,95,6 +pisglass,95,6 +pistainedglass,95,6 +darkgrayglass,95,7 +darkgraysglass,95,7 +darkgraystainedglass,95,7 +dgrayglass,95,7 +dgraysglass,95,7 +dgraystainedglass,95,7 +darkgreyglass,95,7 +darkgreysglass,95,7 +darkgreystainedglass,95,7 +dgreyglass,95,7 +dgreysglass,95,7 +dgreystainedglass,95,7 +darkgraglass,95,7 +darkgrasglass,95,7 +darkgrastainedglass,95,7 +dgraglass,95,7 +dgrasglass,95,7 +dgrastainedglass,95,7 +grayglass,95,7 +graysglass,95,7 +graystainedglass,95,7 +greyglass,95,7 +greysglass,95,7 +greystainedglass,95,7 +graglass,95,7 +grasglass,95,7 +grastainedglass,95,7 +lightgrayglass,95,8 +lightgraysglass,95,8 +lightgraystainedglass,95,8 +lgrayglass,95,8 +lgraysglass,95,8 +lgraystainedglass,95,8 +lightgreyglass,95,8 +lightgreysglass,95,8 +lightgreystainedglass,95,8 +lgreyglass,95,8 +lgreysglass,95,8 +lgreystainedglass,95,8 +lightgraglass,95,8 +lightgrasglass,95,8 +lightgrastainedglass,95,8 +lgraglass,95,8 +lgrasglass,95,8 +lgrastainedglass,95,8 +silverglass,95,8 +silversglass,95,8 +silverstainedglass,95,8 +siglass,95,8 +siasglass,95,8 +siastainedglass,95,8 +cyanglass,95,9 +cyansglass,95,9 +cyanstainedglass,95,9 +cglass,95,9 +csglass,95,9 +cstainedglass,95,9 +purpleglass,95,10 +purplesglass,95,10 +purplestainedglass,95,10 +puglass,95,10 +pusglass,95,10 +pustainedglass,95,10 +blueglass,95,11 +bluesglass,95,11 +bluestainedglass,95,11 +bluglass,95,11 +blusglass,95,11 +blustainedglass,95,11 +brownglass,95,12 +brownsglass,95,12 +brownstainedglass,95,12 +broglass,95,12 +brosglass,95,12 +brostainedglass,95,12 +darkgreenglass,95,13 +darkgreensglass,95,13 +darkgreenstainedglass,95,13 +dgreenglass,95,13 +dgreensglass,95,13 +dgreenstainedglass,95,13 +greenglass,95,13 +greensglass,95,13 +greenstainedglass,95,13 +darkgreglass,95,13 +darkgresglass,95,13 +darkgrestainedglass,95,13 +dgreglass,95,13 +dgresglass,95,13 +dgrestainedglass,95,13 +greglass,95,13 +gresglass,95,13 +grestainedglass,95,13 +redglass,95,14 +redsglass,95,14 +redstainedglass,95,14 +rglass,95,14 +rsglass,95,14 +rstainedglass,95,14 +blackglass,95,15 +blacksglass,95,15 +blackstainedglass,95,15 +blaglass,95,15 +blasglass,95,15 +blastainedglass,95,15 +trapdoor,96,0 +doortrap,96,0 +hatch,96,0 +tdoor,96,0 +doort,96,0 +trapd,96,0 +dtrap,96,0 +silverfish,97,0 +silverfishsmoothstone,97,0 +silverfishsstone,97,0 +sfishsmoothstone,97,0 +sfishsstone,97,0 +fishsmoothstone,97,0 +fishsstone,97,0 +sfsmoothstone,97,0 +sfsstone,97,0 +trapsmoothstone,97,0 +trapsstone,97,0 +monsteregg,97,0 +monstereggsmoothstone,97,0 +monstereggsstone,97,0 +meggsmoothstone,97,0 +meggsstone,97,0 +mesmoothstone,97,0 +messtone,97,0 +silverfishcobblestone,97,1 +silverfishcstone,97,1 +sfishcobblestone,97,1 +sfishcstone,97,1 +fishcobblestone,97,1 +fishcstone,97,1 +sfcobblestone,97,1 +sfcstone,97,1 +trapcobblestone,97,1 +trapcstone,97,1 +monstereggcobblestone,97,1 +monstereggcstone,97,1 +meggcobblestone,97,1 +meggcstone,97,1 +mecobblestone,97,1 +mecstone,97,1 +silverfishstonebrick,97,2 +silverfishsbrick,97,2 +sfishstonebrick,97,2 +sfishsbrick,97,2 +fishstonebrick,97,2 +fishsbrick,97,2 +sfstonebrick,97,2 +sfsbrick,97,2 +trapstonebrick,97,2 +trapsbrick,97,2 +monstereggstonebrick,97,2 +monstereggsbrick,97,2 +meggstonebrick,97,2 +meggsbrick,97,2 +mestonebrick,97,2 +mesbrick,97,2 +silverfishmossystonebrick,97,3 +silverfishmossstonebrick,97,3 +silverfishmstonebrick,97,3 +silverfishmsbrick,97,3 +sfishmossystonebrick,97,3 +sfishmossstonebrick,97,3 +sfishmstonebrick,97,3 +sfishmsbrick,97,3 +fishmossystonebrick,97,3 +fishmossstonebrick,97,3 +fishmstonebrick,97,3 +fishmsbrick,97,3 +sfmossystonebrick,97,3 +sfmossstonebrick,97,3 +sfmstonebrick,97,3 +sfmsbrick,97,3 +trapmossystonebrick,97,3 +trapmossstonebrick,97,3 +trapmstonebrick,97,3 +trapmsbrick,97,3 +monstereggmossystonebrick,97,3 +monstereggmossstonebrick,97,3 +monstereggmstonebrick,97,3 +monstereggmsbrick,97,3 +meggmossystonebrick,97,3 +meggmossstonebrick,97,3 +meggmstonebrick,97,3 +meggmsbrick,97,3 +memossystonebrick,97,3 +memossstonebrick,97,3 +memstonebrick,97,3 +memsbrick,97,3 +silverfishcrackedstonebrick,97,4 +silverfishcrackstonebrick,97,4 +silverfishcrstonebrick,97,4 +silverfishcrsbrick,97,4 +sfishcrackedstonebrick,97,4 +sfishcrackstonebrick,97,4 +sfishcrstonebrick,97,4 +sfishcrsbrick,97,4 +fishcrackedstonebrick,97,4 +fishcrackstonebrick,97,4 +fishcrstonebrick,97,4 +fishcrsbrick,97,4 +sfcrackedstonebrick,97,4 +sfcrackstonebrick,97,4 +sfcrstonebrick,97,4 +sfcrsbrick,97,4 +trapcrackedstonebrick,97,4 +trapcrackstonebrick,97,4 +trapcrstonebrick,97,4 +trapcrsbrick,97,4 +monstereggcrackedstonebrick,97,4 +monstereggcrackstonebrick,97,4 +monstereggcrstonebrick,97,4 +monstereggcrsbrick,97,4 +meggcrackedstonebrick,97,4 +meggcrackstonebrick,97,4 +meggcrstonebrick,97,4 +meggcrsbrick,97,4 +mecrackedstonebrick,97,4 +mecrackstonebrick,97,4 +mecrstonebrick,97,4 +mecrsbrick,97,4 +silverfishcirclestonebrick,97,5 +silverfishcistonebrick,97,5 +silverfishcisbrick,97,5 +sfishcirclestonebrick,97,5 +sfishcistonebrick,97,5 +sfishcisbrick,97,5 +fishcirclestonebrick,97,5 +fishcistonebrick,97,5 +fishcisbrick,97,5 +sfcirclestonebrick,97,5 +sfcistonebrick,97,5 +sfcisbrick,97,5 +trapcirclestonebrick,97,5 +trapcistonebrick,97,5 +trapcisbrick,97,5 +monstereggcirclestonebrick,97,5 +monstereggcistonebrick,97,5 +monstereggcisbrick,97,5 +meggcirclestonebrick,97,5 +meggcistonebrick,97,5 +meggcisbrick,97,5 +mecirclestonebrick,97,5 +mecistonebrick,97,5 +mecisbrick,97,5 +stonebrick,98,0 +stonebricks,98,0 +stonebrickblock,98,0 +stonebb,98,0 +sbrick,98,0 +mossystonebrick,98,1 +mossystonebricks,98,1 +mossystonebrickblock,98,1 +mossystonebb,98,1 +mossstonebrick,98,1 +mossstonebricks,98,1 +mossstonebrickblock,98,1 +mossstonebb,98,1 +mstonebrick,98,1 +mstonebricks,98,1 +mstonebrickblock,98,1 +mstonebb,98,1 +mosssbrick,98,1 +mosssbricks,98,1 +mosssbrickblock,98,1 +mosssbb,98,1 +msbrick,98,1 +msbricks,98,1 +msbrickblock,98,1 +crackedstone,98,2 +crackedstonebrick,98,2 +crackedstonebricks,98,2 +crackedstonebrickblock,98,2 +crackedstonebb,98,2 +crackstonebrick,98,2 +crackstonebricks,98,2 +crackstonebrickblock,98,2 +crackstonebb,98,2 +crstonebrick,98,2 +crstonebricks,98,2 +crstonebrickblock,98,2 +crstonebb,98,2 +cracksbrick,98,2 +cracksbricks,98,2 +cracksbrickblock,98,2 +cracksbb,98,2 +crsbrick,98,2 +crsbricks,98,2 +crsbrickblock,98,2 +circlestone,98,3 +circlestonebrick,98,3 +circlestonebricks,98,3 +circlestonebrickblock,98,3 +circlestonebb,98,3 +cistonebrick,98,3 +cistonebricks,98,3 +cistonebrickblock,98,3 +cistonebb,98,3 +circlesbrick,98,3 +circlesbricks,98,3 +circlesbrickblock,98,3 +circlesbb,98,3 +cisbrick,98,3 +cisbricks,98,3 +cisbrickblock,98,3 +giantredmushroom,99,0 +hugeredmushroom,99,0 +bigredmushroom,99,0 +gredmushroom,99,0 +hredmushroom,99,0 +bredmushroom,99,0 +giantrmushroom,99,0 +hugermushroom,99,0 +bigrmushroom,99,0 +grmushroom,99,0 +hrmushroom,99,0 +brmushroom,99,0 +giantredmush,99,0 +hugeredmush,99,0 +bigredmush,99,0 +gredmush,99,0 +hredmush,99,0 +bredmush,99,0 +giantrmush,99,0 +hugermush,99,0 +bigrmush,99,0 +grmush,99,0 +hrmush,99,0 +brmush,99,0 +giantbrownmushroom,100,0 +hugebrownmushroom,100,0 +bigbrownmushroom,100,0 +gbrownmushroom,100,0 +hbrownmushroom,100,0 +bbrownmushroom,100,0 +giantbmushroom,100,0 +hugebmushroom,100,0 +bigbmushroom,100,0 +gbmushroom,100,0 +hbmushroom,100,0 +bbmushroom,100,0 +giantbrownmush,100,0 +hugebrownmush,100,0 +bigbrownmush,100,0 +gbrownmush,100,0 +hbrownmush,100,0 +bbrownmush,100,0 +giantbmush,100,0 +hugebmush,100,0 +bigbmush,100,0 +gbmush,100,0 +hbmush,100,0 +bbmush,100,0 +ironbars,101,0 +ironbarsb,101,0 +ironbarsblock,101,0 +ironfence,101,0 +metalbars,101,0 +metalbarsb,101,0 +metalbarsblock,101,0 +metalfence,101,0 +jailbars,101,0 +jailbarsb,101,0 +jailbarsblock,101,0 +jailfence,101,0 +mbars,101,0 +mbarsb,101,0 +mbarsblock,101,0 +mfence,101,0 +jbars,101,0 +jbarsb,101,0 +jbarsblock,101,0 +jfence,101,0 +ibars,101,0 +ibarsb,101,0 +ibarsblock,101,0 +ifence,101,0 +glasspane,102,0 +glassp,102,0 +paneglass,102,0 +pglass,102,0 +flatglass,102,0 +fglass,102,0 +skinnyglass,102,0 +glassflat,102,0 +glassf,102,0 +glassskinny,102,0 +glasss,102,0 +melon,103,0 +watermelon,103,0 +greenmelon,103,0 +melongreen,103,0 +melonblock,103,0 +watermelonblock,103,0 +greenmelonblock,103,0 +vines,106,0 +vine,106,0 +greenvines,106,0 +greenvine,106,0 +gardenvines,106,0 +gardenvine,106,0 +vinesgreen,106,0 +vinegreen,106,0 +vinesgarden,106,0 +vinegarden,106,0 +vinesg,106,0 +vineg,106,0 +gvines,106,0 +gvine,106,0 +woodgate,107,0 +woodenfencegate,107,0 +wfencegate,107,0 +woodfencegate,107,0 +woodengate,107,0 +wgate,107,0 +gate,107,0 +gardengate,107,0 +ggate,107,0 +fencegate,107,0 +fgate,107,0 +brickstairs,108,0 +redbrickstairs,108,0 +redbstairs,108,0 +rbrickstairs,108,0 +bstairs,108,0 +redstairs,108,0 +brickstair,108,0 +redbrickstair,108,0 +redbstair,108,0 +rbrickstair,108,0 +bstair,108,0 +redstair,108,0 +stonebrickstairs,109,0 +stonebstairs,109,0 +sbstairs,109,0 +cementbrickstairs,109,0 +cementstairs,109,0 +cementbstairs,109,0 +cbstairs,109,0 +greybrickstairs,109,0 +greybstairs,109,0 +greystairs,109,0 +mycelium,110,0 +purplegrass,110,0 +pinkgrass,110,0 +mycel,110,0 +swampgrass,110,0 +sgrass,110,0 +mushroomgrass,110,0 +mushgrass,110,0 +lilypad,111,0 +waterlily,111,0 +lily,111,0 +swamppad,111,0 +lpad,111,0 +wlily,111,0 +netherbrickblock,112,0 +hellbrickblock,112,0 +deathbrickblock,112,0 +nbrickblock,112,0 +hbrickblock,112,0 +dbrickblock,112,0 +netherbblock,112,0 +hellbblock,112,0 +deathbblock,112,0 +nbblock,112,0 +hbblock,112,0 +dbblock,112,0 +netherbrickfence,113,0 +hellbrickfence,113,0 +nbrickfence,113,0 +hbrickfence,113,0 +netherbfence,113,0 +hellbfence,113,0 +netherfence,113,0 +hellfence,113,0 +nbfence,113,0 +hbfence,113,0 +nfence,113,0 +hfence,113,0 +netherbrickstairs,114,0 +hellbrickstairs,114,0 +nbrickstairs,114,0 +hbrickstairs,114,0 +netherbstairs,114,0 +hellbstairs,114,0 +netherstairs,114,0 +hellstairs,114,0 +nbstairs,114,0 +hbstairs,114,0 +nstairs,114,0 +hstairs,114,0 +netherbrickstair,114,0 +hellbrickstair,114,0 +nbrickstair,114,0 +hbrickstair,114,0 +netherbstair,114,0 +hellbstair,114,0 +netherstair,114,0 +hellstair,114,0 +nbstair,114,0 +hbstair,114,0 +nstair,114,0 +hstair,114,0 +enchantmenttable,116,0 +enchantingtable,116,0 +enchanttable,116,0 +etable,116,0 +magicaltable,116,0 +magictable,116,0 +mtable,116,0 +enchantmentdesk,116,0 +enchantingdesk,116,0 +enchantdesk,116,0 +edesk,116,0 +magicaldesk,116,0 +magicdesk,116,0 +mdesk,116,0 +booktable,116,0 +bookdesk,116,0 +btable,116,0 +bdesk,116,0 +enderportal,119,0 +endergoo,119,0 +endgoo,119,0 +endportal,119,0 +egoo,119,0 +eportal,119,0 +enderportalframe,120,0 +endportalframe,120,0 +endgooframe,120,0 +endergooframe,120,0 +egooframe,120,0 +eportalframe,120,0 +enderframe,120,0 +endframe,120,0 +enderstone,121,0 +endstone,121,0 +endrock,121,0 +enderrock,121,0 +erock,121,0 +estone,121,0 +enderdragonegg,122,0 +endegg,122,0 +dragonegg,122,0 +degg,122,0 +bossegg,122,0 +begg,122,0 +redstonelamp,123,0 +redlamp,123,0 +rslamp,123,0 +woodendoublestep,125,0 +woodendstep,125,0 +wooddoublestep,125,0 +wooddstep,125,0 +wdoublestep,125,0 +wdstep,125,0 +doublewoodenstep,125,0 +dwoodenstep,125,0 +doublewoodstep,125,0 +dwoodstep,125,0 +doublewstep,125,0 +dwstep,125,0 +woodendoubleslab,125,0 +woodendslab,125,0 +wooddoubleslab,125,0 +wooddslab,125,0 +wdoubleslab,125,0 +wdslab,125,0 +doublewoodenslab,125,0 +dwoodenslab,125,0 +doublewoodslab,125,0 +dwoodslab,125,0 +doublewslab,125,0 +dwslab,125,0 +woodendoublehalfblock,125,0 +woodendhalfblock,125,0 +wooddoublehalfblock,125,0 +wooddhalfblock,125,0 +wdoublehalfblock,125,0 +wdhalfblock,125,0 +doublewoodenhalfblock,125,0 +dwoodenhalfblock,125,0 +doublewoodhalfblock,125,0 +dwoodhalfblock,125,0 +doublewhalfblock,125,0 +dwhalfblock,125,0 +oakwoodendoublehalfblock,125,0 +oakwoodendhalfblock,125,0 +oakwooddoublehalfblock,125,0 +oakwooddhalfblock,125,0 +oakwdoublehalfblock,125,0 +oakwdhalfblock,125,0 +oakdoublewoodenhalfblock,125,0 +oakdwoodenhalfblock,125,0 +oakdoublewoodhalfblock,125,0 +oakdwoodhalfblock,125,0 +oakdoublewhalfblock,125,0 +oakdwhalfblock,125,0 +oakdoublehalfblock,125,0 +oakdhalfblock,125,0 +odhalfblock,125,0 +oakwoodendoublestep,125,0 +oakwoodendstep,125,0 +oakwooddoublestep,125,0 +oakwooddstep,125,0 +oakwdoublestep,125,0 +oakwdstep,125,0 +oakdoublewoodenstep,125,0 +oakdwoodenstep,125,0 +oakdoublewoodstep,125,0 +oakdwoodstep,125,0 +oakdoublewstep,125,0 +oakdwstep,125,0 +oakdoublestep,125,0 +oakdstep,125,0 +odstep,125,0 +oakwoodendoubleslab,125,0 +oakwoodendslab,125,0 +oakwooddoubleslab,125,0 +oakwooddslab,125,0 +oakwdoubleslab,125,0 +oakwdslab,125,0 +oakdoublewoodenslab,125,0 +oakdwoodenslab,125,0 +oakdoublewoodslab,125,0 +oakdwoodslab,125,0 +oakdoublewslab,125,0 +oakdwslab,125,0 +oakdoubleslab,125,0 +oakdslab,125,0 +odslab,125,0 +sprucewoodendoublestep,125,1 +sprucewoodendstep,125,1 +sprucewooddoublestep,125,1 +sprucewooddstep,125,1 +sprucewdoublestep,125,1 +sprucewdstep,125,1 +sprucedoublewoodenstep,125,1 +sprucedwoodenstep,125,1 +sprucedoublewoodstep,125,1 +sprucedwoodstep,125,1 +sprucedoublewstep,125,1 +sprucedwstep,125,1 +sprucedoublestep,125,1 +sprucedstep,125,1 +sprucewoodendoubleslab,125,1 +sprucewoodendslab,125,1 +sprucewooddoubleslab,125,1 +sprucewooddslab,125,1 +sprucewdoubleslab,125,1 +sprucewdslab,125,1 +sprucedoublewoodenslab,125,1 +sprucedwoodenslab,125,1 +sprucedoublewoodslab,125,1 +sprucedwoodslab,125,1 +sprucedoublewslab,125,1 +sprucedwslab,125,1 +sprucedoubleslab,125,1 +sprucedslab,125,1 +sprucewoodendoublehalfblock,125,1 +sprucewoodendhalfblock,125,1 +sprucewooddoublehalfblock,125,1 +sprucewooddhalfblock,125,1 +sprucewdoublehalfblock,125,1 +sprucewdhalfblock,125,1 +sprucedoublewoodenhalfblock,125,1 +sprucedwoodenhalfblock,125,1 +sprucedoublewoodhalfblock,125,1 +sprucedwoodhalfblock,125,1 +sprucedoublewhalfblock,125,1 +sprucedwhalfblock,125,1 +sprucedoublehalfblock,125,1 +sprucedhalfblock,125,1 +darkwoodendoublestep,125,1 +darkwoodendstep,125,1 +darkwooddoublestep,125,1 +darkwooddstep,125,1 +darkwdoublestep,125,1 +darkwdstep,125,1 +darkdoublewoodenstep,125,1 +darkdwoodenstep,125,1 +darkdoublewoodstep,125,1 +darkdwoodstep,125,1 +darkdoublewstep,125,1 +darkdwstep,125,1 +darkdoublestep,125,1 +darkdstep,125,1 +ddstep,125,1 +darkwoodendoubleslab,125,1 +darkwoodendslab,125,1 +darkwooddoubleslab,125,1 +darkwooddslab,125,1 +darkwdoubleslab,125,1 +darkwdslab,125,1 +darkdoublewoodenslab,125,1 +darkdwoodenslab,125,1 +darkdoublewoodslab,125,1 +darkdwoodslab,125,1 +darkdoublewslab,125,1 +darkdwslab,125,1 +darkdoubleslab,125,1 +darkdslab,125,1 +ddslab,125,1 +darkwoodendoublehalfblock,125,1 +darkwoodendhalfblock,125,1 +darkwooddoublehalfblock,125,1 +darkwooddhalfblock,125,1 +darkwdoublehalfblock,125,1 +darkwdhalfblock,125,1 +darkdoublewoodenhalfblock,125,1 +darkdwoodenhalfblock,125,1 +darkdoublewoodhalfblock,125,1 +darkdwoodhalfblock,125,1 +darkdoublewhalfblock,125,1 +darkdwhalfblock,125,1 +darkdoublehalfblock,125,1 +darkdhalfblock,125,1 +ddhalfblock,125,1 +birchwoodendoublestep,125,2 +birchwoodendstep,125,2 +birchwooddoublestep,125,2 +birchwooddstep,125,2 +birchwdoublestep,125,2 +birchwdstep,125,2 +birchdoublewoodenstep,125,2 +birchdwoodenstep,125,2 +birchdoublewoodstep,125,2 +birchdwoodstep,125,2 +birchdoublewstep,125,2 +birchdwstep,125,2 +birchdoublestep,125,2 +birchdstep,125,2 +birchwoodendoubleslab,125,2 +birchwoodendslab,125,2 +birchwooddoubleslab,125,2 +birchwooddslab,125,2 +birchwdoubleslab,125,2 +birchwdslab,125,2 +birchdoublewoodenslab,125,2 +birchdwoodenslab,125,2 +birchdoublewoodslab,125,2 +birchdwoodslab,125,2 +birchdoublewslab,125,2 +birchdwslab,125,2 +birchdoubleslab,125,2 +birchdslab,125,2 +birchwoodendoublehalfblock,125,2 +birchwoodendhalfblock,125,2 +birchwooddoublehalfblock,125,2 +birchwooddhalfblock,125,2 +birchwdoublehalfblock,125,2 +birchwdhalfblock,125,2 +birchdoublewoodenhalfblock,125,2 +birchdwoodenhalfblock,125,2 +birchdoublewoodhalfblock,125,2 +birchdwoodhalfblock,125,2 +birchdoublewhalfblock,125,2 +birchdwhalfblock,125,2 +birchdoublehalfblock,125,2 +birchdhalfblock,125,2 +lightwoodendoublehalfblock,125,2 +lightwoodendhalfblock,125,2 +lightwooddoublehalfblock,125,2 +lightwooddhalfblock,125,2 +lightwdoublehalfblock,125,2 +lightwdhalfblock,125,2 +lightdoublewoodenhalfblock,125,2 +lightdwoodenhalfblock,125,2 +lightdoublewoodhalfblock,125,2 +lightdwoodhalfblock,125,2 +lightdoublewhalfblock,125,2 +lightdwhalfblock,125,2 +lightdoublehalfblock,125,2 +lightdhalfblock,125,2 +ldhalfblock,125,2 +lightwoodendoublestep,125,2 +lightwoodendstep,125,2 +lightwooddoublestep,125,2 +lightwooddstep,125,2 +lightwdoublestep,125,2 +lightwdstep,125,2 +lightdoublewoodenstep,125,2 +lightdwoodenstep,125,2 +lightdoublewoodstep,125,2 +lightdwoodstep,125,2 +lightdoublewstep,125,2 +lightdwstep,125,2 +lightdoublestep,125,2 +lightdstep,125,2 +ldstep,125,2 +lightwoodendoubleslab,125,2 +lightwoodendslab,125,2 +lightwooddoubleslab,125,2 +lightwooddslab,125,2 +lightwdoubleslab,125,2 +lightwdslab,125,2 +lightdoublewoodenslab,125,2 +lightdwoodenslab,125,2 +lightdoublewoodslab,125,2 +lightdwoodslab,125,2 +lightdoublewslab,125,2 +lightdwslab,125,2 +lightdoubleslab,125,2 +lightdslab,125,2 +ldslab,125,2 +junglewoodendoublestep,125,3 +junglewoodendstep,125,3 +junglewooddoublestep,125,3 +junglewooddstep,125,3 +junglewdoublestep,125,3 +junglewdstep,125,3 +jungledoublewoodenstep,125,3 +jungledwoodenstep,125,3 +jungledoublewoodstep,125,3 +jungledwoodstep,125,3 +jungledoublewstep,125,3 +jungledwstep,125,3 +jungledoublestep,125,3 +jungledstep,125,3 +jdstep,125,3 +junglewoodendoubleslab,125,3 +junglewoodendslab,125,3 +junglewooddoubleslab,125,3 +junglewooddslab,125,3 +junglewdoubleslab,125,3 +junglewdslab,125,3 +jungledoublewoodenslab,125,3 +jungledwoodenslab,125,3 +jungledoublewoodslab,125,3 +jungledwoodslab,125,3 +jungledoublewslab,125,3 +jungledwslab,125,3 +jungledoubleslab,125,3 +jungledslab,125,3 +jdslab,125,3 +junglewoodendoublehalfblock,125,3 +junglewoodendhalfblock,125,3 +junglewooddoublehalfblock,125,3 +junglewooddhalfblock,125,3 +junglewdoublehalfblock,125,3 +junglewdhalfblock,125,3 +jungledoublewoodenhalfblock,125,3 +jungledwoodenhalfblock,125,3 +jungledoublewoodhalfblock,125,3 +jungledwoodhalfblock,125,3 +jungledoublewhalfblock,125,3 +jungledwhalfblock,125,3 +jungledoublehalfblock,125,3 +jungledhalfblock,125,3 +jdhalfblock,125,3 +forestwoodendoublehalfblock,125,3 +forestwoodendhalfblock,125,3 +forestwooddoublehalfblock,125,3 +forestwooddhalfblock,125,3 +forestwdoublehalfblock,125,3 +forestwdhalfblock,125,3 +forestdoublewoodenhalfblock,125,3 +forestdwoodenhalfblock,125,3 +forestdoublewoodhalfblock,125,3 +forestdwoodhalfblock,125,3 +forestdoublewhalfblock,125,3 +forestdwhalfblock,125,3 +forestdoublehalfblock,125,3 +forestdhalfblock,125,3 +fdhalfblock,125,3 +forestwoodendoublestep,125,3 +forestwoodendstep,125,3 +forestwooddoublestep,125,3 +forestwooddstep,125,3 +forestwdoublestep,125,3 +forestwdstep,125,3 +forestdoublewoodenstep,125,3 +forestdwoodenstep,125,3 +forestdoublewoodstep,125,3 +forestdwoodstep,125,3 +forestdoublewstep,125,3 +forestdwstep,125,3 +forestdoublestep,125,3 +forestdstep,125,3 +fdstep,125,3 +forestwoodendoubleslab,125,3 +forestwoodendslab,125,3 +forestwooddoubleslab,125,3 +forestwooddslab,125,3 +forestwdoubleslab,125,3 +forestwdslab,125,3 +forestdoublewoodenslab,125,3 +forestdwoodenslab,125,3 +forestdoublewoodslab,125,3 +forestdwoodslab,125,3 +forestdoublewslab,125,3 +forestdwslab,125,3 +forestdoubleslab,125,3 +forestdslab,125,3 +fdslab,125,3 +acaciawoodendoublestep,125,4 +acaciawoodendstep,125,4 +acaciawooddoublestep,125,4 +acaciawooddstep,125,4 +acaciawdoublestep,125,4 +acaciawdstep,125,4 +acaciadoublewoodenstep,125,4 +acaciadwoodenstep,125,4 +acaciadoublewoodstep,125,4 +acaciadwoodstep,125,4 +acaciadoublewstep,125,4 +acaciadwstep,125,4 +acaciadoublestep,125,4 +acaciadstep,125,4 +adstep,125,4 +acaciawoodendoubleslab,125,4 +acaciawoodendslab,125,4 +acaciawooddoubleslab,125,4 +acaciawooddslab,125,4 +acaciawdoubleslab,125,4 +acaciawdslab,125,4 +acaciadoublewoodenslab,125,4 +acaciadwoodenslab,125,4 +acaciadoublewoodslab,125,4 +acaciadwoodslab,125,4 +acaciadoublewslab,125,4 +acaciadwslab,125,4 +acaciadoubleslab,125,4 +acaciadslab,125,4 +adslab,125,4 +acaciawoodendoublehalfblock,125,4 +acaciawoodendhalfblock,125,4 +acaciawooddoublehalfblock,125,4 +acaciawooddhalfblock,125,4 +acaciawdoublehalfblock,125,4 +acaciawdhalfblock,125,4 +acaciadoublewoodenhalfblock,125,4 +acaciadwoodenhalfblock,125,4 +acaciadoublewoodhalfblock,125,4 +acaciadwoodhalfblock,125,4 +acaciadoublewhalfblock,125,4 +acaciadwhalfblock,125,4 +acaciadoublehalfblock,125,4 +acaciadhalfblock,125,4 +adhalfblock,125,4 +darkoakwoodendoublehalfblock,125,5 +darkoakwoodendhalfblock,125,5 +darkoakwooddoublehalfblock,125,5 +darkoakwooddhalfblock,125,5 +darkoakwdoublehalfblock,125,5 +darkoakwdhalfblock,125,5 +darkoakdoublewoodenhalfblock,125,5 +darkoakdwoodenhalfblock,125,5 +darkoakdoublewoodhalfblock,125,5 +darkoakdwoodhalfblock,125,5 +darkoakdoublewhalfblock,125,5 +darkoakdwhalfblock,125,5 +darkoakdoublehalfblock,125,5 +darkoakdhalfblock,125,5 +dodhalfblock,125,5 +darkoakwoodendoublestep,125,5 +darkoakwoodendstep,125,5 +darkoakwooddoublestep,125,5 +darkoakwooddstep,125,5 +darkoakwdoublestep,125,5 +darkoakwdstep,125,5 +darkoakdoublewoodenstep,125,5 +darkoakdwoodenstep,125,5 +darkoakdoublewoodstep,125,5 +darkoakdwoodstep,125,5 +darkoakdoublewstep,125,5 +darkoakdwstep,125,5 +darkoakdoublestep,125,5 +darkoakdstep,125,5 +dodstep,125,5 +darkoakwoodendoubleslab,125,5 +darkoakwoodendslab,125,5 +darkoakwooddoubleslab,125,5 +darkoakwooddslab,125,5 +darkoakwdoubleslab,125,5 +darkoakwdslab,125,5 +darkoakdoublewoodenslab,125,5 +darkoakdwoodenslab,125,5 +darkoakdoublewoodslab,125,5 +darkoakdwoodslab,125,5 +darkoakdoublewslab,125,5 +darkoakdwslab,125,5 +darkoakdoubleslab,125,5 +darkoakdslab,125,5 +dodslab,125,5 +woodenstep,126,0 +woodstep,126,0 +wstep,126,0 +woodenslab,126,0 +woodslab,126,0 +wslab,126,0 +woodenhalfblock,126,0 +woodhalfblock,126,0 +whalfblock,126,0 +oakwoodenstep,126,0 +oakwoodstep,126,0 +oakwstep,126,0 +oakstep,126,0 +ostep,126,0 +oakwoodenslab,126,0 +oakwoodslab,126,0 +oakwslab,126,0 +oakslab,126,0 +oslab,126,0 +oakwoodenhalfblock,126,0 +oakwoodhalfblock,126,0 +oakwhalfblock,126,0 +oakhalfblock,126,0 +ohalfblock,126,0 +sprucewoodenstep,126,1 +sprucewoodstep,126,1 +sprucewstep,126,1 +sprucestep,126,1 +sprucewoodenslab,126,1 +sprucewoodslab,126,1 +sprucewslab,126,1 +spruceslab,126,1 +sprucewoodenhalfblock,126,1 +sprucewoodhalfblock,126,1 +sprucewhalfblock,126,1 +sprucehalfblock,126,1 +darkwoodenstep,126,1 +darkwoodstep,126,1 +darkwstep,126,1 +darkstep,126,1 +darkwoodenslab,126,1 +darkwoodslab,126,1 +darkwslab,126,1 +darkslab,126,1 +darkwoodenhalfblock,126,1 +darkwoodhalfblock,126,1 +darkwhalfblock,126,1 +darkhalfblock,126,1 +birchwoodenstep,126,2 +birchwoodstep,126,2 +birchwstep,126,2 +birchstep,126,2 +birchwoodenslab,126,2 +birchwoodslab,126,2 +birchwslab,126,2 +birchslab,126,2 +birchwoodenhalfblock,126,2 +birchwoodhalfblock,126,2 +birchwhalfblock,126,2 +birchhalfblock,126,2 +lightwoodenstep,126,2 +lightwoodstep,126,2 +lightwstep,126,2 +lightstep,126,2 +lstep,126,2 +lightwoodenslab,126,2 +lightwoodslab,126,2 +lightwslab,126,2 +lightslab,126,2 +lslab,126,2 +lightwoodenhalfblock,126,2 +lightwoodhalfblock,126,2 +lightwhalfblock,126,2 +lighthalfblock,126,2 +lhalfblock,126,2 +junglewoodenstep,126,3 +junglewoodstep,126,3 +junglewstep,126,3 +junglestep,126,3 +jstep,126,3 +junglewoodenslab,126,3 +junglewoodslab,126,3 +junglewslab,126,3 +jungleslab,126,3 +jslab,126,3 +junglewoodenhalfblock,126,3 +junglewoodhalfblock,126,3 +junglewhalfblock,126,3 +junglehalfblock,126,3 +jhalfblock,126,3 +forestwoodenstep,126,3 +forestwoodstep,126,3 +forestwstep,126,3 +foreststep,126,3 +fstep,126,3 +forestwoodenslab,126,3 +forestwoodslab,126,3 +forestwslab,126,3 +forestslab,126,3 +fslab,126,3 +forestwoodenhalfblock,126,3 +forestwoodhalfblock,126,3 +forestwhalfblock,126,3 +foresthalfblock,126,3 +fhalfblock,126,3 +acaciawoodenstep,126,4 +acaciawoodstep,126,4 +acaciawstep,126,4 +acaciastep,126,4 +astep,126,4 +acaciawoodenslab,126,4 +acaciawoodslab,126,4 +acaciawslab,126,4 +acaciaslab,126,4 +aslab,126,4 +acaciawoodenhalfblock,126,4 +acaciawoodhalfblock,126,4 +acaciawhalfblock,126,4 +acaciahalfblock,126,4 +ahalfblock,126,4 +darkoakwoodenstep,126,5 +darkoakwoodstep,126,5 +darkoakwstep,126,5 +darkoakstep,126,5 +dostep,126,5 +darkoakwoodenslab,126,5 +darkoakwoodslab,126,5 +darkoakwslab,126,5 +darkoakslab,126,5 +doslab,126,5 +darkoakwoodenhalfblock,126,5 +darkoakwoodhalfblock,126,5 +darkoakwhalfblock,126,5 +darkoakhalfblock,126,5 +dohalfblock,126,5 +cocoaplant,127,0 +cocoplant,127,0 +cplant,127,0 +cocoafruit,127,0 +cocofruit,127,0 +cfruit,127,0 +cocoapod,127,0 +cocopod,127,0 +cpod,127,0 +sandstonestairs,128,0 +sandstairs,128,0 +sandsstairs,128,0 +sstonestairs,128,0 +ssstairs,128,0 +sandstair,128,0 +sandstonestair,128,0 +sandsstair,128,0 +sstonestair,128,0 +ssstair,128,0 +emeraldore,129,0 +eore,129,0 +oreemerald,129,0 +oree,129,0 +enderchest,130,0 +endchest,130,0 +echest,130,0 +chestender,130,0 +chestend,130,0 +cheste,130,0 +endercontainer,130,0 +endcontainer,130,0 +econtainer,130,0 +tripwirehook,131,0 +tripwire,131,0 +trip,131,0 +tripwirelever,131,0 +triphook,131,0 +emeraldblock,133,0 +blockemerald,133,0 +eblock,133,0 +blocke,133,0 +sprucewoodenstairs,134,0 +sprucewoodstairs,134,0 +sprucewstairs,134,0 +sprucestairs,134,0 +darkwoodenstairs,134,0 +darkwoodstairs,134,0 +darkwstairs,134,0 +darkstairs,134,0 +dstairs,134,0 +sprucewoodenstair,134,0 +sprucewoodstair,134,0 +sprucewstair,134,0 +sprucestair,134,0 +darkwoodenstair,134,0 +darkwoodstair,134,0 +darkwstair,134,0 +darkstair,134,0 +dstair,134,0 +birchwoodenstairs,135,0 +birchwoodstairs,135,0 +birchwstairs,135,0 +birchstairs,135,0 +lightwoodenstairs,135,0 +lightwoodstairs,135,0 +lightwstairs,135,0 +lightstairs,135,0 +lstairs,135,0 +birchwoodenstair,135,0 +birchwoodstair,135,0 +birchwstair,135,0 +birchstair,135,0 +lightwoodenstair,135,0 +lightwoodstair,135,0 +lightwstair,135,0 +lightstair,135,0 +lstair,135,0 +junglewoodenstairs,136,0 +junglewoodstairs,136,0 +junglewstairs,136,0 +junglestairs,136,0 +jstairs,136,0 +forestwoodenstairs,136,0 +forestwoodstairs,136,0 +forestwstairs,136,0 +foreststairs,136,0 +fstairs,136,0 +junglewoodenstair,136,0 +junglewoodstair,136,0 +junglewstair,136,0 +junglestair,136,0 +jstair,136,0 +forestwoodenstair,136,0 +forestwoodstair,136,0 +forestwstair,136,0 +foreststair,136,0 +fstair,136,0 +commandblock,137,0 +blockcommand,137,0 +cmdblock,137,0 +blockcmd,137,0 +macroblock,137,0 +blockmacro,137,0 +beacon,138,0 +beaconblock,138,0 +cobblestonewall,139,0 +cstonewall,139,0 +cobblewall,139,0 +cobblestonefence,139,0 +cstonefence,139,0 +cobblefence,139,0 +cswall,139,0 +csfence,139,0 +cwall,139,0 +cfence,139,0 +mosscobblestonewall,139,1 +mosscstonewall,139,1 +mosscobblewall,139,1 +mcobblestonewall,139,1 +mcstonewall,139,1 +mcobblewall,139,1 +mosscobblestonefence,139,1 +mosscstonefence,139,1 +mosscobblefence,139,1 +mcobblestonefence,139,1 +mcstonefence,139,1 +mcobblefence,139,1 +mcswall,139,0 +mcsfence,139,0 +mcwall,139,0 +mcfence,139,0 +plantedcarrot,141,0 +plantcarrot,141,0 +carrots,141,0 +growingcarrot,141,0 +potatoplant,142,0 +potatoes,142,0 +plantedpotato,142,0 +plantpotato,142,0 +growingpotato,142,0 +woodenbutton,143,0 +woodenplankbutton,143,0 +woodplankbutton,143,0 +wplankbutton,143,0 +plankbutton,143,0 +woodbutton,143,0 +wbutton,143,0 +anvil,145,0 +slightlydamagedanvil,145,1 +slightdamageanvil,145,1 +damagedanvil,145,1 +verydamagedanvil,145,2 +trapchest,146,0 +trappedchest,146,0 +chesttrapped,146,0 +chesttrap,146,0 +goldpressureplate,147,0 +weightedgoldpressureplate,147,0 +weightgoldpressureplate,147,0 +wgoldpressureplate,147,0 +weightedgoldpressplate,147,0 +weightgoldpressplate,147,0 +wgoldpressplate,147,0 +goldpressplate,147,0 +weightedgoldpplate,147,0 +weightgoldpplate,147,0 +wgoldpplate,147,0 +goldpplate,147,0 +weightedgoldplate,147,0 +weightgoldplate,147,0 +wgoldplate,147,0 +goldplate,147,0 +weightedgpressureplate,147,0 +weightgpressureplate,147,0 +wgpressureplate,147,0 +gpressureplate,147,0 +weightedgpressplate,147,0 +weightgpressplate,147,0 +wgpressplate,147,0 +gpressplate,147,0 +weightedgpplate,147,0 +weightgpplate,147,0 +wgpplate,147,0 +gpplate,147,0 +weightedgplate,147,0 +weightgplate,147,0 +wgplate,147,0 +gplate,147,0 +ironpressureplate,148,0 +weightedironpressureplate,148,0 +weightironpressureplate,148,0 +wironpressureplate,148,0 +weightedironpressplate,148,0 +weightironpressplate,148,0 +wironpressplate,148,0 +ironpressplate,148,0 +weightedironpplate,148,0 +weightironpplate,148,0 +wironpplate,148,0 +ironpplate,148,0 +weightedironplate,148,0 +weightironplate,148,0 +wironplate,148,0 +ironplate,148,0 +weightedipressureplate,148,0 +weightipressureplate,148,0 +wipressureplate,148,0 +ipressureplate,148,0 +weightedipressplate,148,0 +weightipressplate,148,0 +wipressplate,148,0 +ipressplate,148,0 +weightedipplate,148,0 +weightipplate,148,0 +wipplate,148,0 +ipplate,148,0 +weightediplate,148,0 +weightiplate,148,0 +wiplate,148,0 +iplate,148,0 +daylightsensor,151,0 +daylightsense,151,0 +lightsensor,151,0 +lightsense,151,0 +daysensor,151,0 +daysense,151,0 +timesensor,151,0 +timesense,151,0 +redstoneblock,152,0 +rstoneblock,152,0 +redsblock,152,0 +rsblock,152,0 +blockredstone,152,0 +blockrstone,152,0 +blockreds,152,0 +blockrs,152,0 +netherquartzore,153,0 +hellquartzore,153,0 +deathquartzore,153,0 +nquartzore,153,0 +hquartzore,153,0 +dquartzore,153,0 +quartzore,153,0 +netherqore,153,0 +hellqore,153,0 +deathqore,153,0 +nqore,153,0 +hqore,153,0 +dqore,153,0 +qore,153,0 +hopper,154,0 +chestpuller,154,0 +chestpull,154,0 +cheststorer,154,0 +cheststore,154,0 +itempuller,154,0 +itempull,154,0 +itemstorer,154,0 +itemstore,154,0 +quartzblock,155,0 +netherquartzblock,155,0 +nqblock,155,0 +qblock,155,0 +chiseledquartzblock,155,1 +chiselquartzblock,155,1 +cquartzblock,155,1 +cqblock,155,1 +pillarquartzblock,155,2 +pquartzblock,155,2 +pqblock,155,2 +quartzstairs,156,0 +qstairs,156,0 +quartzstair,156,0 +qstair,156,0 +activatorrails,157,0 +activaterails,157,0 +triggerrails,157,0 +arails,157,0 +trails,157,0 +activatorrail,157,0 +activaterail,157,0 +triggerrail,157,0 +arail,157,0 +trail,157,0 +activatortrack,157,0 +activatetrack,157,0 +triggertrack,157,0 +atrack,157,0 +ttrack,157,0 +dropper,158,0 +drop,158,0 +chestdispenser,158,0 +chestdispense,158,0 +chestdropper,158,0 +chestdrop,158,0 +whiteclay,159,0 +whitesclay,159,0 +whitestainedclay,159,0 +wclay,159,0 +wsclay,159,0 +wstainedclay,159,0 +sclay,159,0 +stainedclay,159,0 +orangeclay,159,1 +orangesclay,159,1 +orangestainedclay,159,1 +oclay,159,1 +osclay,159,1 +ostainedclay,159,1 +magentaclay,159,2 +magentasclay,159,2 +magentastainedclay,159,2 +mclay,159,2 +msclay,159,2 +mstainedclay,159,2 +lightblueclay,159,3 +lightbluesclay,159,3 +lightbluestainedclay,159,3 +lblueclay,159,3 +lbluesclay,159,3 +lbluestainedclay,159,3 +lightbluclay,159,3 +lightblusclay,159,3 +lightblustainedclay,159,3 +lbluclay,159,3 +lblusclay,159,3 +lblustainedclay,159,3 +lbclay,159,3 +lbsclay,159,3 +lbstainedclay,159,3 +yellowclay,159,4 +yellowsclay,159,4 +yellowstainedclay,159,4 +yclay,159,4 +ysclay,159,4 +ystainedclay,159,4 +lightgreenclay,159,5 +lightgreensclay,159,5 +lightgreenstainedclay,159,5 +lgreenclay,159,5 +lgreensclay,159,5 +lgreenstainedclay,159,5 +lightgreclay,159,5 +lightgresclay,159,5 +lightgrestainedclay,159,5 +lgreclay,159,5 +lgresclay,159,5 +lgrestainedclay,159,5 +limeclay,159,5 +limesclay,159,5 +limestainedclay,159,5 +lclay,159,5 +lsclay,159,5 +lstainedclay,159,5 +pinkclay,159,6 +pinksclay,159,6 +pinkstainedclay,159,6 +piclay,159,6 +pisclay,159,6 +pistainedclay,159,6 +darkgrayclay,159,7 +darkgraysclay,159,7 +darkgraystainedclay,159,7 +dgrayclay,159,7 +dgraysclay,159,7 +dgraystainedclay,159,7 +darkgreyclay,159,7 +darkgreeysclay,159,7 +darkgreystainedclay,159,7 +dgreyclay,159,7 +dgreysclay,159,7 +dgreystainedclay,159,7 +darkgraclay,159,7 +darkgrasclay,159,7 +darkgrastainedclay,159,7 +dgraclay,159,7 +dgrasclay,159,7 +dgrastainedclay,159,7 +grayclay,159,7 +graysclay,159,7 +graystainedclay,159,7 +greyclay,159,7 +greysclay,159,7 +greystainedclay,159,7 +graclay,159,7 +grasclay,159,7 +grastainedclay,159,7 +lightgrayclay,159,8 +lightgraysclay,159,8 +lightgraystainedclay,159,8 +lgrayclay,159,8 +lgraysclay,159,8 +lgraystainedclay,159,8 +lightgreyclay,159,8 +lightgreysclay,159,8 +lightgreystainedclay,159,8 +lgreyclay,159,8 +lgreysclay,159,8 +lgreystainedclay,159,8 +lightgraclay,159,8 +lightgrasclay,159,8 +lightgrastainedclay,159,8 +lgraclay,159,8 +lgrasclay,159,8 +lgrastainedclay,159,8 +silverclay,159,8 +silversclay,159,8 +silverstainedclay,159,8 +siclay,159,8 +siasclay,159,8 +siastainedclay,159,8 +cyanclay,159,9 +cyansclay,159,9 +cyanstainedclay,159,9 +cclay,159,9 +csclay,159,9 +cstainedclay,159,9 +purpleclay,159,10 +purplesclay,159,10 +purplestainedclay,159,10 +puclay,159,10 +pusclay,159,10 +pustainedclay,159,10 +blueclay,159,11 +bluesclay,159,11 +bluestainedclay,159,11 +bluclay,159,11 +blusclay,159,11 +blustainedclay,159,11 +brownclay,159,12 +brownsclay,159,12 +brownstainedclay,159,12 +broclay,159,12 +brosclay,159,12 +brostainedclay,159,12 +darkgreenclay,159,13 +darkgreensclay,159,13 +darkgreenstainedclay,159,13 +dgreenclay,159,13 +dgreensclay,159,13 +dgreenstainedclay,159,13 +greenclay,159,13 +greensclay,159,13 +greenstainedclay,159,13 +darkgreclay,159,13 +darkgresclay,159,13 +darkgrestainedclay,159,13 +dgreclay,159,13 +dgresclay,159,13 +dgrestainedclay,159,13 +greclay,159,13 +gresclay,159,13 +grestainedclay,159,13 +redclay,159,14 +redsclay,159,14 +redstainedclay,159,14 +rclay,159,14 +rsclay,159,14 +rstainedclay,159,14 +blackclay,159,15 +blacksclay,159,15 +blackstainedclay,159,15 +blaclay,159,15 +blasclay,159,15 +blastainedclay,159,15 +whiteglasspane,160,0 +whitesglasspane,160,0 +whitestainedglasspane,160,0 +wglasspane,160,0 +wsglasspane,160,0 +wstainedglasspane,160,0 +sglasspane,160,0 +stainedglasspane,160,0 +orangeglasspane,160,1 +orangesglasspane,160,1 +orangestainedglasspane,160,1 +oglasspane,160,1 +osglasspane,160,1 +ostainedglasspane,160,1 +magentaglasspane,160,2 +magentasglasspane,160,2 +magentastainedglasspane,160,2 +mglasspane,160,2 +msglasspane,160,2 +mstainedglasspane,160,2 +lightblueglasspane,160,3 +lightbluesglasspane,160,3 +lightbluestainedglasspane,160,3 +lblueglasspane,160,3 +lbluesglasspane,160,3 +lbluestainedglasspane,160,3 +lightbluglasspane,160,3 +lightblusglasspane,160,3 +lightblustainedglasspane,160,3 +lbluglasspane,160,3 +lblusglasspane,160,3 +lblustainedglasspane,160,3 +lbglasspane,160,3 +lbsglasspane,160,3 +lbstainedglasspane,160,3 +yellowglasspane,160,4 +yellowsglasspane,160,4 +yellowstainedglasspane,160,4 +yglasspane,160,4 +ysglasspane,160,4 +ystainedglasspane,160,4 +lightgreenglasspane,160,5 +lightgreensglasspane,160,5 +lightgreenstainedglasspane,160,5 +lgreenglasspane,160,5 +lgreensglasspane,160,5 +lgreenstainedglasspane,160,5 +lightgreglasspane,160,5 +lightgresglasspane,160,5 +lightgrestainedglasspane,160,5 +lgreglasspane,160,5 +lgresglasspane,160,5 +lgrestainedglasspane,160,5 +limeglasspane,160,5 +limesglasspane,160,5 +limestainedglasspane,160,5 +lglasspane,160,5 +lsglasspane,160,5 +lstainedglasspane,160,5 +pinkglasspane,160,6 +pinksglasspane,160,6 +pinkstainedglasspane,160,6 +piglasspane,160,6 +pisglasspane,160,6 +pistainedglasspane,160,6 +darkgrayglasspane,160,7 +darkgraysglasspane,160,7 +darkgraystainedglasspane,160,7 +dgrayglasspane,160,7 +dgraysglasspane,160,7 +dgraystainedglasspane,160,7 +darkgreyglasspane,160,7 +darkgreysglasspane,160,7 +darkgreystainedglasspane,160,7 +dgreyglasspane,160,7 +dgreysglasspane,160,7 +dgreystainedglasspane,160,7 +darkgraglasspane,160,7 +darkgrasglasspane,160,7 +darkgrastainedglasspane,160,7 +dgraglasspane,160,7 +dgrasglasspane,160,7 +dgrastainedglasspane,160,7 +grayglasspane,160,7 +graysglasspane,160,7 +graystainedglasspane,160,7 +greyglasspane,160,7 +greysglasspane,160,7 +greystainedglasspane,160,7 +graglasspane,160,7 +grasglasspane,160,7 +grastainedglasspane,160,7 +lightgrayglasspane,160,8 +lightgraysglasspane,160,8 +lightgraystainedglasspane,160,8 +lgrayglasspane,160,8 +lgraysglasspane,160,8 +lgraystainedglasspane,160,8 +lightgreyglasspane,160,8 +lightgreysglasspane,160,8 +lightgreystainedglasspane,160,8 +lgreyglasspane,160,8 +lgreysglasspane,160,8 +lgreystainedglasspane,160,8 +lightgraglasspane,160,8 +lightgrasglasspane,160,8 +lightgrastainedglasspane,160,8 +lgraglasspane,160,8 +lgrasglasspane,160,8 +lgrastainedglasspane,160,8 +silverglasspane,160,8 +silversglasspane,160,8 +silverstainedglasspane,160,8 +siglasspane,160,8 +siasglasspane,160,8 +siastainedglasspane,160,8 +cyanglasspane,160,9 +cyansglasspane,160,9 +cyanstainedglasspane,160,9 +cglasspane,160,9 +csglasspane,160,9 +cstainedglasspane,160,9 +purpleglasspane,160,10 +purplesglasspane,160,10 +purplestainedglasspane,160,10 +puglasspane,160,10 +pusglasspane,160,10 +pustainedglasspane,160,10 +blueglasspane,160,11 +bluesglasspane,160,11 +bluestainedglasspane,160,11 +bluglasspane,160,11 +blusglasspane,160,11 +blustainedglasspane,160,11 +brownglasspane,160,12 +brownsglasspane,160,12 +brownstainedglasspane,160,12 +broglasspane,160,12 +brosglasspane,160,12 +brostainedglasspane,160,12 +darkgreenglasspane,160,13 +darkgreensglasspane,160,13 +darkgreenstainedglasspane,160,13 +dgreenglasspane,160,13 +dgreensglasspane,160,13 +dgreenstainedglasspane,160,13 +greenglasspane,160,13 +greensglasspane,160,13 +greenstainedglasspane,160,13 +darkgreglasspane,160,13 +darkgresglasspane,160,13 +darkgrestainedglasspane,160,13 +dgreglasspane,160,13 +dgresglasspane,160,13 +dgrestainedglasspane,160,13 +greglasspane,160,13 +gresglasspane,160,13 +grestainedglasspane,160,13 +redglasspane,160,14 +redsglasspane,160,14 +redstainedglasspane,160,14 +rglasspane,160,14 +rsglasspane,160,14 +rstainedglasspane,160,14 +blackglasspane,160,15 +blacksglasspane,160,15 +blackstainedglasspane,160,15 +blaglasspane,160,15 +blasglasspane,160,15 +blastainedglasspane,160,15 +acacialeaves,161,0 +acaciatreeleaves,161,0 +acacialogleaves,161,0 +acaciatrunkleaves,161,0 +acaciawoodleaves,161,0 +aleaves,161,0 +atreeleaves,161,0 +alogleaves,161,0 +atrunkleaves,161,0 +awoodleaves,161,0 +acacialeave,161,0 +acaciatreeleave,161,0 +acacialogleave,161,0 +acaciatrunkleave,161,0 +acaciawoodleave,161,0 +aleave,161,0 +atreeleave,161,0 +alogleave,161,0 +atrunkleave,161,0 +awoodleave,161,0 +acaciatreeleaf,161,0 +acacialogleaf,161,0 +acaciatrunkleaf,161,0 +acaciawoodleaf,161,0 +aleaf,161,0 +atreeleaf,161,0 +alogleaf,161,0 +atrunkleaf,161,0 +awoodleaf,161,0 +darkoakleaves,161,1 +darkoaktreeleaves,161,1 +darkoaklogleaves,161,1 +darkoaktrunkleaves,161,1 +darkoakwoodleaves,161,1 +doakleaves,161,1 +doaktreeleaves,161,1 +doaklogleaves,161,1 +doaktrunkleaves,161,1 +doakwoodleaves,161,1 +doleaves,161,1 +dotreeleaves,161,1 +dologleaves,161,1 +dotrunkleaves,161,1 +dowoodleaves,161,1 +darkoakleave,161,1 +darkoaktreeleave,161,1 +darkoaklogleave,161,1 +darkoaktrunkleave,161,1 +darkoakwoodleave,161,1 +doakleave,161,1 +doaktreeleave,161,1 +doaklogleave,161,1 +doaktrunkleave,161,1 +doakwoodleave,161,1 +doleave,161,1 +dotreeleave,161,1 +dologleave,161,1 +dotrunkleave,161,1 +dowoodleave,161,1 +darkoaktreeleaf,161,1 +darkoaklogleaf,161,1 +darkoaktrunkleaf,161,1 +darkoakwoodleaf,161,1 +doakleaf,161,1 +doaktreeleaf,161,1 +doaklogleaf,161,1 +doaktrunkleaf,161,1 +doakwoodleaf,161,1 +doleaf,161,1 +dotreeleaf,161,1 +dologleaf,161,1 +dotrunkleaf,161,1 +dowoodleaf,161,1 +acacia,162,0 +acaciatree,162,0 +acacialog,162,0 +acaciatrunk,162,0 +acaciawood,162,0 +atree,162,0 +alog,162,0 +atrunk,162,0 +awood,162,0 +darkoak,162,1 +darkoaktree,162,1 +darkoaklog,162,1 +darkoaktrunk,162,1 +darkoakwood,162,1 +doak,162,1 +doaktree,162,1 +doaklog,162,1 +doaktrunk,162,1 +doakwood,162,1 +dotree,162,1 +dolog,162,1 +dotrunk,162,1 +dowood,162,1 +acaciawoodenstairs,163,0 +acaciawoodstairs,163,0 +acaciawstairs,163,0 +acaciastairs,163,0 +awoodenstairs,163,0 +awoodstairs,163,0 +awstairs,163,0 +astairs,163,0 +acaciawoodenstair,163,0 +acaciawoodstair,163,0 +acaciawstair,163,0 +acaciastair,163,0 +awoodenstair,163,0 +awoodstair,163,0 +awstair,163,0 +astair,163,0 +darkoakwoodenstairs,164,0 +darkoakwoodstairs,164,0 +darkoakwstairs,164,0 +darkoakstairs,164,0 +doakwoodenstairs,164,0 +doakwoodstairs,164,0 +doakwstairs,164,0 +doakstairs,164,0 +dowoodenstairs,164,0 +dowoodstairs,164,0 +dowstairs,164,0 +dostairs,164,0 +darkoakwoodenstair,164,0 +darkoakwoodstair,164,0 +darkoakwstair,164,0 +darkoakstair,164,0 +doakwoodenstair,164,0 +doakwoodstair,164,0 +doakwstair,164,0 +doakstair,164,0 +dowoodenstair,164,0 +dowoodstair,164,0 +dowstair,164,0 +dostair,164,0 +hay,170,0 +hayblock,170,0 +haybale,170,0 +baleofhay,170,0 +hayofbale,170,0 +whitecarpet,171,0 +whitefloor,171,0 +wcarpet,171,0 +wfloor,171,0 +carpet,171,0 +floor,171,0 +orangecarpet,171,1 +orangefloor,171,1 +ocarpet,171,1 +ofloor,171,1 +magentacarpet,171,2 +magentafloor,171,2 +mcarpet,171,2 +mfloor,171,2 +lightbluecarpet,171,3 +lightbluefloor,171,3 +lbluecarpet,171,3 +lbluefloor,171,3 +lbcarpet,171,3 +lbfloor,171,3 +lightblucarpet,171,3 +lightblufloor,171,3 +lblucarpet,171,3 +lblufloor,171,3 +yellowcarpet,171,4 +yellowfloor,171,4 +ycarpet,171,4 +yfloor,171,4 +lightgreencarpet,171,5 +lightgreenfloor,171,5 +lgreencarpet,171,5 +lgreenfloor,171,5 +lightgrecarpet,171,5 +lightgrefloor,171,5 +lgrecarpet,171,5 +lgrefloor,171,5 +limecarpet,171,5 +limefloor,171,5 +lcarpet,171,5 +lfloor,171,5 +pinkcarpet,171,6 +pinkfloor,171,6 +picarpet,171,6 +pifloor,171,6 +darkgraycarpet,171,7 +darkgrayfloor,171,7 +dgraycarpet,171,7 +dgrayfloor,171,7 +darkgreycarpet,171,7 +darkgreyfloor,171,7 +dgreycarpet,171,7 +dgreyfloor,171,7 +darkgracarpet,171,7 +darkgrafloor,171,7 +dgracarpet,171,7 +dgrafloor,171,7 +graycarpet,171,7 +grayfloor,171,7 +greycarpet,171,7 +greyfloor,171,7 +gracarpet,171,7 +grafloor,171,7 +lightgraycarpet,171,8 +lightgrayfloor,171,8 +lgraycarpet,171,8 +lgrayfloor,171,8 +lightgreycarpet,171,8 +lightgreyfloor,171,8 +lgreycarpet,171,8 +lgreyfloor,171,8 +lightgracarpet,171,8 +lightgrafloor,171,8 +lgracarpet,171,8 +lgrafloor,171,8 +silvercarpet,171,8 +silverfloor,171,8 +sicarpet,171,8 +siafloor,171,8 +cyancarpet,171,9 +cyanfloor,171,9 +ccarpet,171,9 +cfloor,171,9 +purplecarpet,171,10 +purplefloor,171,10 +pucarpet,171,10 +pufloor,171,10 +bluecarpet,171,11 +bluefloor,171,11 +blucarpet,171,11 +blufloor,171,11 +browncarpet,171,12 +brownfloor,171,12 +brocarpet,171,12 +brofloor,171,12 +darkgreencarpet,171,13 +darkgreenfloor,171,13 +dgreencarpet,171,13 +dgreenfloor,171,13 +greencarpet,171,13 +greenfloor,171,13 +darkgrecarpet,171,13 +darkgrefloor,171,13 +dgrecarpet,171,13 +dgrefloor,171,13 +grecarpet,171,13 +grefloor,171,13 +redcarpet,171,14 +redfloor,171,14 +rcarpet,171,14 +rfloor,171,14 +blackcarpet,171,15 +blackfloor,171,15 +blacarpet,171,15 +blafloor,171,15 +hardenedclay,172,0 +hardclay,172,0 +hclay,172,0 +coalblock,173,0 +blockcoal,173,0 +packedice,174,0 +packice,174,0 +solidice,174,0 +sunflower,175,0 +yellowsunflower,175,0 +lilac,175,1 +magentalilac,175,1 +longtallgrass,175,2 +extratallgrass,175,2 +doubletallgrass,175,2 +largetallgrass,175,2 +longtgrass,175,2 +extratgrass,175,2 +doubletgrass,175,2 +largetgrass,175,2 +ltgrass,175,2 +etgrass,175,2 +dtgrass,175,2 +bigfern,175,3 +largefern,175,3 +doublefern,175,3 +bfern,175,3 +lfern,175,3 +dfern,175,3 +rosebush,175,4 +redrosebush,175,4 +peony,175,5 +pinkpeony,175,5 +ironshovel,256,0 +ironspade,256,0 +ishovel,256,0 +ispade,256,0 +steelshovel,256,0 +steelspade,256,0 +ironpickaxe,257,0 +ironpick,257,0 +steelpickaxe,257,0 +steelpick,257,0 +ipickaxe,257,0 +ipick,257,0 +ironaxe,258,0 +iaxe,258,0 +steelaxe,258,0 +flintandsteel,259,0 +flintandiron,259,0 +flintandtinder,259,0 +flintnsteel,259,0 +flintniron,259,0 +flintntinder,259,0 +flintsteel,259,0 +flintiron,259,0 +flinttinder,259,0 +lighter,259,0 +apple,260,0 +normalapple,260,0 +redapple,260,0 +bow,261,0 +arrow,262,0 +coal,263,0 +charcoal,263,1 +ccoal,263,1 +diamond,264,0 +crystal,264,0 +ironingot,265,0 +ironbar,265,0 +ironi,265,0 +steelingot,265,0 +steelbar,265,0 +steeli,265,0 +iingot,265,0 +ibar,265,0 +ingotiron,265,0 +bariron,265,0 +iiron,265,0 +ingotsteel,265,0 +barsteel,265,0 +isteel,265,0 +ingoti,265,0 +bari,265,0 +goldingot,266,0 +goldbar,266,0 +goldi,266,0 +gingot,266,0 +gbar,266,0 +ingotgold,266,0 +bargold,266,0 +igold,266,0 +ingotg,266,0 +barg,266,0 +ironsword,267,0 +steelsword,267,0 +isword,267,0 +woodensword,268,0 +woodsword,268,0 +wsword,268,0 +woodenshovel,269,0 +woodenspade,269,0 +woodshovel,269,0 +woodspade,269,0 +wshovel,269,0 +wspade,269,0 +woodenpickaxe,270,0 +woodenpick,270,0 +woodpickaxe,270,0 +woodpick,270,0 +wpickaxe,270,0 +wpick,270,0 +woodenaxe,271,0 +woodaxe,271,0 +waxe,271,0 +stonesword,272,0 +cobblestonesword,272,0 +cstonesword,272,0 +cssword,272,0 +ssword,272,0 +stoneshovel,273,0 +cobblestoneshovel,273,0 +cobblestonespade,273,0 +cstoneshovel,273,0 +cstonespade,273,0 +stonespade,273,0 +csshovel,273,0 +csspade,273,0 +sshovel,273,0 +sspade,273,0 +stonepickaxe,274,0 +cobblestonepickaxe,274,0 +cobblestonepick,274,0 +cstonepickaxe,274,0 +cstonepick,274,0 +stonepick,274,0 +cspickaxe,274,0 +cspick,274,0 +spickaxe,274,0 +spick,274,0 +stoneaxe,275,0 +cobblestoneaxe,275,0 +cstoneaxe,275,0 +csaxe,275,0 +saxe,275,0 +diamondsword,276,0 +crystalsword,276,0 +dsword,276,0 +diamondshovel,277,0 +diamondspade,277,0 +crystalshovel,277,0 +crystalspade,277,0 +dshovel,277,0 +dspade,277,0 +diamondpickaxe,278,0 +diamondpick,278,0 +crystalpickaxe,278,0 +crystalpick,278,0 +dpickaxe,278,0 +dpick,278,0 +diamondaxe,279,0 +crystalaxe,279,0 +daxe,279,0 +stick,280,0 +twig,280,0 +branch,280,0 +bowl,281,0 +woodenbowl,281,0 +woodbowl,281,0 +mushroomsoup,282,0 +mrsoup,282,0 +soup,282,0 +goldsword,283,0 +gsword,283,0 +goldshovel,284,0 +goldspade,284,0 +gshovel,284,0 +gspade,284,0 +goldpickaxe,285,0 +goldpick,285,0 +gpickaxe,285,0 +gpick,285,0 +goldaxe,286,0 +gaxe,286,0 +string,287,0 +thread,287,0 +feather,288,0 +gunpowder,289,0 +sulfur,289,0 +woodenhoe,290,0 +woodhoe,290,0 +whoe,290,0 +stonehoe,291,0 +cobblestonehoe,291,0 +cstonehoe,291,0 +cshoe,291,0 +shoe,291,0 +ironhoe,292,0 +steelhoe,292,0 +ihoe,292,0 +diamondhoe,293,0 +crystalhoe,293,0 +dhoe,293,0 +goldhoe,294,0 +ghoe,294,0 +seeds,295,0 +seed,295,0 +wheat,296,0 +crops,296,0 +crop,296,0 +bread,297,0 +leatherhelmet,298,0 +leatherhelm,298,0 +leatherhat,298,0 +leathercoif,298,0 +lhelmet,298,0 +lhelm,298,0 +lhat,298,0 +lcoif,298,0 +leatherchestplate,299,0 +leatherplatebody,299,0 +leatherplate,299,0 +leathershirt,299,0 +leathertunic,299,0 +lchestplate,299,0 +lplatebody,299,0 +lplate,299,0 +lshirt,299,0 +ltunic,299,0 +leatherleggings,300,0 +leatherlegs,300,0 +leatherpants,300,0 +lleggings,300,0 +llegs,300,0 +lpants,300,0 +leatherboots,301,0 +leathershoes,301,0 +lboots,301,0 +lshoes,301,0 +chainmailhelmet,302,0 +chainmailhelm,302,0 +chainmailhat,302,0 +chainmailcoif,302,0 +chainmhelmet,302,0 +chainmhelm,302,0 +chainmhat,302,0 +chainmcoif,302,0 +cmailhelmet,302,0 +cmailhelm,302,0 +cmailhat,302,0 +cmailcoif,302,0 +chainhelmet,302,0 +chainhelm,302,0 +chainhat,302,0 +chaincoif,302,0 +cmhelmet,302,0 +cmhelm,302,0 +cmhat,302,0 +cmcoif,302,0 +chainmailchestplate,303,0 +chainmailplatebody,303,0 +chainmailplate,303,0 +chainmailshirt,303,0 +chainmailtunic,303,0 +chainmchestplate,303,0 +chainmplatebody,303,0 +chainmplate,303,0 +chainmshirt,303,0 +chainmtunic,303,0 +cmailchestplate,303,0 +cmailplatebody,303,0 +cmailplate,303,0 +cmailshirt,303,0 +cmailtunic,303,0 +chainchestplate,303,0 +chainplatebody,303,0 +chainplate,303,0 +chainshirt,303,0 +chaintunic,303,0 +cmchestplate,303,0 +cmplatebody,303,0 +cmplate,303,0 +cmshirt,303,0 +cmtunic,303,0 +chainmailleggings,304,0 +chainmaillegs,304,0 +chainmailpants,304,0 +chainmleggings,304,0 +chainmlegs,304,0 +chainmpants,304,0 +cmailleggings,304,0 +cmaillegs,304,0 +cmailpants,304,0 +chainleggings,304,0 +chainlegs,304,0 +chainpants,304,0 +cmleggings,304,0 +cmlegs,304,0 +cmpants,304,0 +chainmailboots,305,0 +chainmailshoes,305,0 +chainmboots,305,0 +chainmshoes,305,0 +cmailboots,305,0 +cmailshoes,305,0 +chainboots,305,0 +chainshoes,305,0 +cmboots,305,0 +cmshoes,305,0 +ironhelmet,306,0 +ironhelm,306,0 +ironhat,306,0 +ironcoif,306,0 +ihelmet,306,0 +ihelm,306,0 +ihat,306,0 +icoif,306,0 +steelhelmet,306,0 +steelhelm,306,0 +steelhat,306,0 +steelcoif,306,0 +shelmet,306,0 +shelm,306,0 +shat,306,0 +scoif,306,0 +ironchestplate,307,0 +ironplatebody,307,0 +ironshirt,307,0 +irontunic,307,0 +ichestplate,307,0 +iplatebody,307,0 +ishirt,307,0 +itunic,307,0 +steelchestplate,307,0 +steelplatebody,307,0 +steelplate,307,0 +steelshirt,307,0 +steeltunic,307,0 +schestplate,307,0 +splatebody,307,0 +sshirt,307,0 +stunic,307,0 +ironleggings,308,0 +ironlegs,308,0 +ironpants,308,0 +ileggings,308,0 +ilegs,308,0 +ipants,308,0 +steelleggings,308,0 +steellegs,308,0 +steelpants,308,0 +sleggings,308,0 +slegs,308,0 +spants,308,0 +ironboots,309,0 +ironshoes,309,0 +iboots,309,0 +ishoes,309,0 +steelboots,309,0 +steelshoes,309,0 +sboots,309,0 +sshoes,309,0 +diamondhelmet,310,0 +diamondhelm,310,0 +diamondhat,310,0 +diamondcoif,310,0 +dhelmet,310,0 +dhelm,310,0 +dhat,310,0 +dcoif,310,0 +crystalhelmet,310,0 +crystalhelm,310,0 +crystalhat,310,0 +crystalcoif,310,0 +chelmet,310,0 +chelm,310,0 +chat,310,0 +ccoif,310,0 +diamondchestplate,311,0 +diamondplatebody,311,0 +diamondplate,311,0 +diamondshirt,311,0 +diamondtunic,311,0 +dchestplate,311,0 +dplatebody,311,0 +dplate,311,0 +dshirt,311,0 +dtunic,311,0 +crystalchestplate,311,0 +crystalplatebody,311,0 +crystalplate,311,0 +crystalshirt,311,0 +crystaltunic,311,0 +cchestplate,311,0 +cplatebody,311,0 +cplate,311,0 +cshirt,311,0 +ctunic,311,0 +diamondleggings,312,0 +diamondlegs,312,0 +diamondpants,312,0 +dleggings,312,0 +dlegs,312,0 +dpants,312,0 +crystalleggings,312,0 +crystallegs,312,0 +crystalpants,312,0 +cleggings,312,0 +clegs,312,0 +cpants,312,0 +diamondboots,313,0 +diamondshoes,313,0 +dboots,313,0 +dshoes,313,0 +crystalboots,313,0 +crystalshoes,313,0 +cboots,313,0 +cshoes,313,0 +goldhelmet,314,0 +goldhelm,314,0 +goldhat,314,0 +goldcoif,314,0 +ghelmet,314,0 +ghelm,314,0 +ghat,314,0 +gcoif,314,0 +goldchestplate,315,0 +goldplatebody,315,0 +goldshirt,315,0 +goldtunic,315,0 +gchestplate,315,0 +gplatebody,315,0 +gplateplate,315,0 +gshirt,315,0 +gtunic,315,0 +goldleggings,316,0 +goldlegs,316,0 +goldpants,316,0 +gleggings,316,0 +glegs,316,0 +gpants,316,0 +goldboots,317,0 +goldshoes,317,0 +gboots,317,0 +gshoes,317,0 +flint,318,0 +pork,319,0 +porkchop,319,0 +rawpork,319,0 +rpork,319,0 +rawporkchop,319,0 +rporkchop,319,0 +cookedpork,320,0 +grilledpork,320,0 +grillpork,320,0 +gpork,320,0 +cookpork,320,0 +cpork,320,0 +grilledporkchop,320,0 +grillporkchop,320,0 +gporkchop,320,0 +cookedporkchop,320,0 +cookporkchop,320,0 +cporkchop,320,0 +bacon,320,0 +painting,321,0 +picture,321,0 +goldenapple,322,0 +goldapple,322,0 +gapple,322,0 +enchantedgoldenapple,322,1 +enchantedgoldapple,322,1 +enchantedgapple,322,1 +supergoldenapple,322,1 +supergoldapple,322,1 +supergapple,322,1 +magicalgoldenapple,322,1 +magicalgoldapple,322,1 +magicalgapple,322,1 +magicgoldenapple,322,1 +magicgoldapple,322,1 +magicgapple,322,1 +egoldenapple,322,1 +egoldapple,322,1 +egapple,322,1 +sgoldenapple,322,1 +sgoldapple,322,1 +sgapple,322,1 +mgoldenapple,322,1 +mgoldapple,322,1 +mgapple,322,1 +sign,323,0 +woodendoor,324,0 +wooddoor,324,0 +wdoor,324,0 +door,324,0 +bucket,325,0 +bukkit,325,0 +waterbucket,326,0 +waterbukkit,326,0 +wbucket,326,0 +wbukkit,326,0 +magmabucket,327,0 +magmabukkit,327,0 +lavabucket,327,0 +lavabukkit,327,0 +lbucket,327,0 +lbukkit,327,0 +minecart,328,0 +mcart,328,0 +cart,328,0 +saddle,329,0 +irondoor,330,0 +idoor,330,0 +steeldoor,330,0 +sdoor,330,0 +dooriron,330,0 +doori,330,0 +doorsteel,330,0 +doors,330,0 +redstonedust,331,0 +redstone,331,0 +rstonedust,331,0 +rstone,331,0 +redsdust,331,0 +reddust,331,0 +rsdust,331,0 +rdust,331,0 +snow,332,0 +snowball,332,0 +snball,332,0 +sball,332,0 +boat,333,0 +leather,334,0 +cowhide,334,0 +hide,334,0 +milkbucket,335,0 +milkbukkit,335,0 +mbucket,335,0 +mbukkit,335,0 +claybrick,336,0 +brick,336,0 +redbrick,336,0 +rbrick,336,0 +clayball,337,0 +cball,337,0 +clay,337,0 +reeds,338,0 +reed,338,0 +sugarcane,338,0 +scane,338,0 +bamboo,338,0 +paper,339,0 +papyrus,339,0 +book,340,0 +slimeball,341,0 +slball,341,0 +chestminecart,342,0 +storageminecart,342,0 +storagemcart,342,0 +chestmcart,342,0 +storagecart,342,0 +chestcart,342,0 +sminecart,342,0 +cminecart,342,0 +smcart,342,0 +cmcart,342,0 +scart,342,0 +ccart,342,0 +furnaceminecart,343,0 +engineminecart,343,0 +poweredminecart,343,0 +powerminecart,343,0 +enginemcart,343,0 +poweredmcart,343,0 +powermcart,343,0 +furnacemcart,343,0 +enginecart,343,0 +poweredcart,343,0 +powercart,343,0 +furnacecart,343,0 +eminecart,343,0 +pminecart,343,0 +fminecart,343,0 +emcart,343,0 +pmcart,343,0 +fmcart,343,0 +ecart,343,0 +pcart,343,0 +fcart,343,0 +egg,344,0 +compass,345,0 +fishingrod,346,0 +fishrod,346,0 +frod,346,0 +rod,346,0 +watch,347,0 +goldwatch,347,0 +goldclock,347,0 +gwatch,347,0 +gclock,347,0 +clock,347,0 +glowstonedust,348,0 +glowingstonedust,348,0 +lightstonedust,348,0 +lbdust,348,0 +gbdust,348,0 +lsdust,348,0 +gsdust,348,0 +rawfish,349,0 +rafish,349,0 +fish,349,0 +rawsalmonfish,349,1 +rasalmonfish,349,1 +salmonfish,349,1 +rawsalmon,349,1 +rasalmon,349,1 +salmon,349,1 +rawclownfish,349,2 +raclownfish,349,2 +clownfish,349,2 +rawnemo,349,2 +ranemo,349,2 +nemo,349,2 +rawpufferfish,349,3 +rapufferfish,349,3 +pufferfish,349,3 +cookedfish,350,0 +cookfish,350,0 +cfish,350,0 +grilledfish,350,0 +grillfish,350,0 +gfish,350,0 +roastedfish,350,0 +roastfish,350,0 +rofish,350,0 +cookedsalmonfish,350,1 +cooksalmonfish,350,1 +csalmonfish,350,1 +grilledsalmonfish,350,1 +grillsalmonfish,350,1 +gsalmonfish,350,1 +roastedsalmonfish,350,1 +roastsalmonfish,350,1 +rosalmonfish,350,1 +cookedsalmon,350,1 +cooksalmon,350,1 +csalmon,350,1 +grilledsalmon,350,1 +grillsalmon,350,1 +gsalmon,350,1 +roastedsalmon,350,1 +roastsalmon,350,1 +rosalmon,350,1 +dye,351,0 +inksack,351,0 +inksac,351,0 +isack,351,0 +isac,351,0 +sack,351,0 +sac,351,0 +blackinksack,351,0 +blackinksac,351,0 +blackisack,351,0 +blackisac,351,0 +blacksack,351,0 +blacksac,351,0 +inksackblack,351,0 +inksacblack,351,0 +isackblack,351,0 +isacblack,351,0 +sackblack,351,0 +sacblack,351,0 +blackinksackcolour,351,0 +blackinksaccolour,351,0 +blackisackcolour,351,0 +blackisaccolour,351,0 +blacksackcolour,351,0 +blacksaccolour,351,0 +inksackblackcolour,351,0 +inksacblackcolour,351,0 +isackblackcolour,351,0 +isacclackcolour,351,0 +sackblackcolour,351,0 +sacblackcolour,351,0 +blackinksackcolor,351,0 +blackinksaccolor,351,0 +blackisackcolor,351,0 +blackisaccolor,351,0 +blacksackcolor,351,0 +blacksaccolor,351,0 +inksackblackcolor,351,0 +inksacblackcolor,351,0 +isackblackcolor,351,0 +isacblackcolor,351,0 +sackblackcolor,351,0 +sacblackcolor,351,0 +blackinksackdye,351,0 +blackinksacdye,351,0 +blackisackdye,351,0 +blackisacdye,351,0 +blacksackdye,351,0 +blacksacdye,351,0 +inksackblackdye,351,0 +inksacblackdye,351,0 +isackblackdye,351,0 +isacclackdye,351,0 +sackblackdye,351,0 +sacblackdye,351,0 +blackcolor,351,0 +blackdye,351,0 +rosered,351,1 +roseredcolor,351,1 +roseredcolour,351,1 +rosereddye,351,1 +redrosecolor,351,1 +redrosecolour,351,1 +redrosedye,351,1 +redr,351,1 +redrcolor,351,1 +redrcolour,351,1 +redrdye,351,1 +redcolor,351,1 +redcolour,351,1 +reddye,351,1 +cactusgreen,351,2 +greencactus,351,2 +cactusgreencolour,351,2 +greencactuscolour,351,2 +cactusgreencolor,351,2 +greencactuscolor,351,2 +cactusgreendye,351,2 +greencactusdye,351,2 +greencolour,351,2 +greencolor,351,2 +greendye,351,2 +cocoabeans,351,3 +cocoabean,351,3 +cocobeans,351,3 +cocobean,351,3 +cbeans,351,3 +cbean,351,3 +beans,351,3 +bean,351,3 +browncocoabeans,351,3 +browncocoabean,351,3 +browncocobeans,351,3 +browncocobean,351,3 +browncbeans,351,3 +browncbean,351,3 +brownbeans,351,3 +brownbean,351,3 +brownb,351,3 +cocoabeanscolour,351,3 +cocoabeancolour,351,3 +cocobeanscolour,351,3 +cocobeancolour,351,3 +cbeanscolour,351,3 +cbeancolour,351,3 +beanscolour,351,3 +beancolour,351,3 +browncocoabeanscolour,351,3 +browncocoabeancolour,351,3 +browncocobeanscolour,351,3 +browncocobeancolour,351,3 +browncbeanscolour,351,3 +browncbeancolour,351,3 +brownbeanscolour,351,3 +brownbeancolour,351,3 +brownbcolour,351,3 +cocoabeanscolor,351,3 +cocoabeancolor,351,3 +cocobeanscolor,351,3 +cocobeancolor,351,3 +cbeanscolor,351,3 +cbeancolor,351,3 +beanscolor,351,3 +beancolor,351,3 +browncocoabeanscolor,351,3 +browncocoabeancolor,351,3 +browncocobeanscolor,351,3 +browncocobeancolor,351,3 +browncbeanscolor,351,3 +browncbeancolor,351,3 +brownbeanscolor,351,3 +brownbeancolor,351,3 +brownbcolor,351,3 +cocoabeansdye,351,3 +cocoabeandye,351,3 +cocobeansdye,351,3 +cocobeandye,351,3 +cbeansdye,351,3 +cbeandye,351,3 +beansdye,351,3 +beandye,351,3 +browncocoabeansdye,351,3 +browncocoabeandye,351,3 +browncocobeansdye,351,3 +browncocobeandye,351,3 +browncbeansdye,351,3 +browncbeandye,351,3 +brownbeansdye,351,3 +brownbeandye,351,3 +brownbdye,351,3 +browncolour,351,3 +browncolor,351,3 +browndye,351,3 +lapislazuli,351,4 +bluelapislazuli,351,4 +bluelapisl,351,4 +bluelapis,351,4 +bluel,351,4 +lapislazuliblue,351,4 +lapislblue,351,4 +lapisblue,351,4 +lapisl,351,4 +lapis,351,4 +bluelapislazulicolour,351,4 +bluelapislcolour,351,4 +bluelapiscolour,351,4 +lapislazulibluecolour,351,4 +lapislbluecolour,351,4 +lapisbluecolour,351,4 +lapislazulicolour,351,4 +lapislcolour,351,4 +lapiscolour,351,4 +bluelapislazulicolor,351,4 +bluelapislcolor,351,4 +bluelapiscolor,351,4 +lapislazulibluecolor,351,4 +lapislbluecolor,351,4 +lapisbluecolor,351,4 +lapislazulicolor,351,4 +lapislcolor,351,4 +lapiscolor,351,4 +bluelapislazulidye,351,4 +bluelapisldye,351,4 +bluelapisdye,351,4 +lapislazulibluedye,351,4 +lapislbluedye,351,4 +lapisbluedye,351,4 +lapislazulidye,351,4 +lapisldye,351,4 +lapisdye,351,4 +bluecolour,351,4 +bluecolor,351,4 +bluedye,351,4 +purpledye,351,5 +purplecolour,351,5 +purplecolor,351,5 +cyandye,351,6 +cyancolour,351,6 +cyancolor,351,6 +lightgraydye,351,7 +lightgraycolour,351,7 +lightgraycolor,351,7 +lgraycolour,351,7 +lgraycolor,351,7 +lgraydye,351,7 +lightgreydye,351,7 +lightgreycolour,351,7 +lightgreycolor,351,7 +lgreycolour,351,7 +lgreycolor,351,7 +lgreydye,351,7 +silvercolour,351,7 +silvercolor,351,7 +silverdye,351,7 +darkgraydye,351,8 +darkgraycolour,351,8 +darkgraycolor,351,8 +dgraycolour,351,8 +dgraycolor,351,8 +dgraydye,351,8 +graycolour,351,8 +graycolor,351,8 +graydye,351,8 +darkgreydye,351,8 +darkgreycolour,351,8 +darkgreycolor,351,8 +dgreycolour,351,8 +dgreycolor,351,8 +dgreydye,351,8 +greycolour,351,8 +greycolor,351,8 +greydye,351,8 +pinkdye,351,9 +pinkcolour,351,9 +pinkcolor,351,9 +limedye,351,10 +limecolour,351,10 +limecolor,351,10 +dandelionyellow,351,11 +dandelionyellowcolour,351,11 +dandelionyellowcolor,351,11 +dandelionyellowdye,351,11 +yellowdandelioncolour,351,11 +yellowdandelioncolor,351,11 +yellowdandeliondye,351,11 +yellowd,351,11 +yellowdcolour,351,11 +yellowdcolor,351,11 +yellowddye,351,11 +dyellow,351,11 +dyellowcolour,351,11 +dyellowcolor,351,11 +dyellowdye,351,11 +yellowcolour,351,11 +yellowcolor,351,11 +yellowdye,351,11 +lightbluecolour,351,12 +lightbluecolor,351,12 +lightbluedye,351,12 +lbluecolour,351,12 +lbluecolor,351,12 +lbluedye,351,12 +magentacolour,351,13 +magentacolor,351,13 +magentadye,351,13 +orangecolour,351,14 +orangecolor,351,14 +orangedye,351,14 +bonemeal,351,15 +whitebonemeal,351,15 +whitebonemealcolour,351,15 +whitebonemealcolor,351,15 +whitebonemealdye,351,15 +bonemealwhite,351,15 +bonemealwhitecolour,351,15 +bonemealwhitecolor,351,15 +bonemealwhitedye,351,15 +whitebonem,351,15 +whitebonemcolour,351,15 +whitebonemcolor,351,15 +whitebonemdye,351,15 +bonemwhite,351,15 +bonemwhitecolour,351,15 +bonemwhitecolor,351,15 +bonemwhitedye,351,15 +bonemealcolour,351,15 +bonemealcolor,351,15 +bonemealdye,351,15 +bonem,351,15 +bonemcolour,351,15 +bonemcolor,351,15 +bonemdye,351,15 +whitecolour,351,15 +whitecolor,351,15 +whitedye,351,15 +bone,352,0 +sugar,353,0 +whitedust,353,0 +cake,354,0 +bed,355,0 +redstonerepeater,356,0 +redstonerepeat,356,0 +redstonedelayer,356,0 +redstonedelay,356,0 +redstonedioder,356,0 +redstonediode,356,0 +rstonerepeater,356,0 +rstonerepeat,356,0 +rstonedelayer,356,0 +rstonedelay,356,0 +rstonedioder,356,0 +rstonediode,356,0 +redsrepeater,356,0 +redsrepeat,356,0 +redsdelayer,356,0 +redsdelay,356,0 +redsdioder,356,0 +redsdiode,356,0 +rsrepeater,356,0 +rsrepeat,356,0 +rsdelayer,356,0 +rsdelay,356,0 +rsdioder,356,0 +rsdiode,356,0 +repeater,356,0 +repeat,356,0 +delayer,356,0 +delay,356,0 +dioder,356,0 +diode,356,0 +cookie,357,0 +chart,358,0 +map0,358,0 +map1,358,1 +map2,358,2 +map3,358,3 +map4,358,4 +map5,358,5 +map6,358,6 +map7,358,7 +map8,358,8 +map9,358,9 +map10,358,10 +map11,358,11 +map12,358,12 +map13,358,13 +map14,358,14 +map15,358,15 +shears,359,0 +shear,359,0 +sheers,359,0 +sheer,359,0 +woolcutters,359,0 +woolcutter,359,0 +cutterswool,359,0 +cutterwool,359,0 +melonslice,360,0 +mslice,360,0 +slicemelon,360,0 +watermelonslice,360,0 +greenmelonslice,360,0 +melongreenslice,360,0 +pumpkinseeds,361,0 +pseeds,361,0 +seedsp,361,0 +seedspumpkin,361,0 +pumpseeds,361,0 +seedspump,361,0 +melonseeds,362,0 +mseeds,362,0 +watermelonseeds,362,0 +greenmelonseeds,362,0 +gmelonseeds,362,0 +seedsmelon,362,0 +seedswatermelon,362,0 +rawbeef,363,0 +rawsteak,363,0 +uncookedbeef,363,0 +uncookedsteak,363,0 +cowmeat,363,0 +plainbeef,363,0 +beef,364,0 +steak,364,0 +cookedbeef,364,0 +grilledbeef,364,0 +cookedsteak,364,0 +grilledsteak,364,0 +cookedcowmeat,364,0 +rawchicken,365,0 +uncookedchicken,365,0 +plainchicken,365,0 +chickenplain,365,0 +chickenuncooked,365,0 +chickenraw,365,0 +cookedchicken,366,0 +grilledchicken,366,0 +toastedchicken,366,0 +gchicken,366,0 +bbqchicken,366,0 +friedchicken,366,0 +cchicken,366,0 +rottenflesh,367,0 +zombieflesh,367,0 +rottenmeat,367,0 +zombiemeat,367,0 +badflesh,367,0 +poisonflesh,367,0 +zombieremains,367,0 +enderpearl,368,0 +endpearl,368,0 +pearl,368,0 +epearl,368,0 +bluepearl,368,0 +endergem,368,0 +blazerod,369,0 +goldenrod,369,0 +goldrod,369,0 +blazestick,369,0 +goldstick,369,0 +brod,369,0 +grod,369,0 +bstick,369,0 +gstick,369,0 +ghasttear,370,0 +ghastdrop,370,0 +ghosttear,370,0 +ghostdrop,370,0 +gtear,370,0 +gdrop,370,0 +tear,370,0 +goldnugget,371,0 +gnugget,371,0 +goldpebble,371,0 +gpebble,371,0 +goldball,371,0 +gball,371,0 +netherstalk,372,0 +deathstalk,372,0 +hellstalk,372,0 +nstalk,372,0 +dstalk,372,0 +hstalk,372,0 +netherwarts,372,0 +netherwart,372,0 +netherplant,372,0 +nethercrop,372,0 +hellwarts,372,0 +hellwart,372,0 +hellplant,372,0 +hellcrop,372,0 +deathwarts,372,0 +deathwart,372,0 +deathplant,372,0 +deathcrop,372,0 +nwarts,372,0 +nwart,372,0 +ncrop,372,0 +nplant,372,0 +hwarts,372,0 +hwart,372,0 +hplant,372,0 +hcrop,372,0 +dwarts,372,0 +dwart,372,0 +dplant,372,0 +dcrop,372,0 +potion,373,0 +mixture,373,0 +potions,373,0 +waterbottle,373,0 +fullbottle,373,0 +watervase,373,0 +fullvase,373,0 +clearpotion,373,6 +clearpot,373,6 +clearextendedpotion,373,7 +clearexpotion,373,7 +clear2potion,373,7 +clearextendedpot,373,7 +clearexpot,373,7 +clear2pot,373,7 +diffusepotion,373,11 +diffusepot,373,11 +artlesspotion,373,13 +artlesspot,373,13 +thinpotion,373,14 +thinpot,373,14 +thinextendedpotion,373,15 +thinexpotion,373,15 +thin2potion,373,15 +thinextendedpot,373,15 +thinexpot,373,15 +thin2pot,373,15 +awkwardpotion,373,16 +awkwardpot,373,16 +bunglingpotion,373,22 +bunglingpot,373,22 +bunglingextendedpotion,373,23 +bunglingexpotion,373,23 +bungling2potion,373,23 +bunglingextendedpot,373,23 +bunglingexpot,373,23 +bungling2pot,373,23 +smoothpotion,373,27 +smoothpot,373,27 +suavepotion,373,29 +suavepot,373,29 +debonairpotion,373,30 +debonairpot,373,30 +debonairextendedpotion,373,31 +debonairexpotion,373,31 +debonair2potion,373,31 +debonairextendedpot,373,31 +debonairexpot,373,31 +debonair2pot,373,31 +thickpotion,373,32 +thickpot,373,32 +charmingpotion,373,38 +charmingpot,373,38 +charmingextendedpotion,373,39 +charmingexpotion,373,39 +charming2potion,373,39 +charmingextendedpot,373,39 +charmingexpot,373,39 +charming2pot,373,39 +refinedpotion,373,43 +refinedpot,373,43 +cordialpotion,373,45 +cordialpot,373,45 +sparklingpotion,373,46 +sparklingpot,373,46 +sparklingextendedpotion,373,47 +sparklingexpotion,373,47 +sparkling2potion,373,47 +sparklingextendedpot,373,47 +sparklingexpot,373,47 +sparkling2pot,373,47 +potentpotion,373,48 +potentpot,373,48 +rankpotion,373,54 +rankpot,373,54 +rankextendedpotion,373,55 +rankexpotion,373,55 +rank2potion,373,55 +rankextendedpot,373,55 +rankexpot,373,55 +rank2pot,373,55 +acridpotion,373,59 +acridpot,373,59 +grosspotion,373,61 +grosspot,373,61 +stinkypotion,373,62 +stinkypot,373,62 +stinkyextendedpotion,373,63 +stinkyexpotion,373,63 +stinky2potion,373,63 +stinkyextendedpot,373,63 +stinkyexpot,373,63 +stinky2pot,373,63 +mundaneextendedpotion,373,64 +mundaneexpotion,373,64 +mundane2potion,373,64 +mundaneextendedpot,373,64 +mundaneexpot,373,64 +mundane2pot,373,64 +mundanepotion,373,8192 +mundanepot,373,8192 +regenerationpotion,373,8193 +regeneratepotion,373,8193 +regenpotion,373,8193 +regenerationpot,373,8193 +regeneratepot,373,8193 +regenpot,373,8193 +rpot,373,8193 +swiftnesspotion,373,8194 +swiftpotion,373,8194 +speedpotion,373,8194 +swiftnesspot,373,8194 +swiftpot,373,8194 +speedpot,373,8194 +swpot,373,8194 +fireresistancepotion,373,8195 +fireresistpotion,373,8195 +firerespotion,373,8195 +fireresistancepot,373,8195 +fireresistpot,373,8195 +firerespot,373,8195 +fpot,373,8195 +poisonpotion,373,8196 +acidpotion,373,8196 +poisonpot,373,8196 +acidpot,373,8196 +ppot,373,8196 +healingpotion,373,8197 +healpotion,373,8197 +lifepotion,373,8197 +healingpot,373,8197 +healpot,373,8197 +lifepot,373,8197 +hpot,373,8197 +nightvisionpotion,373,8198 +nvisionpotion,373,8198 +nightvpotion,373,8198 +darkvisionpotion,373,8198 +dvisionpotion,373,8198 +darkvpotion,373,8198 +nightvisionpot,373,8198 +nvisionpot,373,8198 +nightvpot,373,8198 +darkvisionpot,373,8198 +dvisionpot,373,8198 +darkvpot,373,8198 +npot,373,8198 +weaknesspotion,373,8200 +weakpotion,373,8200 +weaknesspot,373,8200 +weakpot,373,8200 +wpot,373,8200 +strengthpotion,373,8201 +strongpotion,373,8201 +strpotion,373,8201 +strengthpot,373,8201 +strongpot,373,8201 +strpot,373,8201 +stpot,373,8201 +slownesspotion,373,8202 +slowpotion,373,8202 +slownesspot,373,8202 +slowpot,373,8202 +slpot,373,8202 +harmingpotion,373,8204 +damagepotion,373,8204 +dmgpotion,373,8204 +harmingpot,373,8204 +damagepot,373,8204 +dmgpot,373,8204 +dpot,373,8204 +waterbreathingpotion,373,8205 +waterbreathpotion,373,8205 +breathingpotion,373,8205 +breathpotion,373,8205 +waterbreathingpot,373,8205 +waterbreathpot,373,8205 +breathingpot,373,8205 +breathpot,373,8205 +wbpot,373,8205 +invisibilitypotion,373,8206 +invisiblepotion,373,8206 +invpotion,373,8206 +invisibilitypot,373,8206 +invisiblepot,373,8206 +invpot,373,8206 +ipot,373,8206 +regenerationleveliipotion,373,8225 +regenerateleveliipotion,373,8225 +regenleveliipotion,373,8225 +regenerationlevel2potion,373,8225 +regeneratelevel2potion,373,8225 +regenlevel2potion,373,8225 +regenerationiipotion,373,8225 +regenerateiipotion,373,8225 +regeniipotion,373,8225 +regenerationleveliipot,373,8225 +regenerateleveliipot,373,8225 +regenleveliipot,373,8225 +regenerationlevel2pot,373,8225 +regeneratelevel2pot,373,8225 +regenlevel2pot,373,8225 +regenerationiipot,373,8225 +regenerateiipot,373,8225 +regeniipot,373,8225 +r2pot,373,8225 +swiftnessleveliipotion,373,8226 +swiftleveliipotion,373,8226 +speedleveliipotion,373,8226 +swiftnesslevel2potion,373,8226 +swiftlevel2potion,373,8226 +speedlevel2potion,373,8226 +swiftnessiipotion,373,8226 +swiftiipotion,373,8226 +speediipotion,373,8226 +swiftnessleveliipot,373,8226 +swiftleveliipot,373,8226 +speedleveliipot,373,8226 +swiftnesslevel2pot,373,8226 +swiftlevel2pot,373,8226 +speedlevel2pot,373,8226 +swiftnessiipot,373,8226 +swiftiipot,373,8226 +speediipot,373,8226 +sw2pot,373,8226 +poisonleveliipotion,373,8228 +acidleveliipotion,373,8228 +poisonlevel2potion,373,8228 +acidlevel2potion,373,8228 +poisoniipotion,373,8228 +acidiipotion,373,8228 +poisonleveliipot,373,8228 +acidleveliipot,373,8228 +poisonlevel2pot,373,8228 +acidlevel2pot,373,8228 +poisoniipot,373,8228 +acidiipot,373,8228 +p2pot,373,8228 +healingleveliipotion,373,8229 +healleveliipotion,373,8229 +healinglevel2potion,373,8229 +heallevel2potion,373,8229 +healingiipotion,373,8229 +healiipotion,373,8229 +healingleveliipot,373,8229 +healleveliipot,373,8229 +healinglevel2pot,373,8229 +heallevel2pot,373,8229 +healingiipot,373,8229 +healiipot,373,8229 +h2pot,373,8229 +strengthleveliipotion,373,8233 +strongleveliipotion,373,8233 +strleveliipotion,373,8233 +strengthlevel2potion,373,8233 +stronglevel2potion,373,8233 +strlevel2potion,373,8233 +strengthiipotion,373,8233 +strongiipotion,373,8233 +striipotion,373,8233 +strengthleveliipot,373,8233 +strongleveliipot,373,8233 +strleveliipot,373,8233 +strengthlevel2pot,373,8233 +stronglevel2pot,373,8233 +strlevel2pot,373,8233 +strengthiipot,373,8233 +strongiipot,373,8233 +striipot,373,8233 +st2pot,373,8233 +harmingleveliipotion,373,8236 +damageleveliipotion,373,8236 +dmgleveliipotion,373,8236 +harminglevel2potion,373,8236 +damagelevel2potion,373,8236 +dmglevel2potion,373,8236 +harmingiipotion,373,8236 +damageiipotion,373,8236 +dmgiipotion,373,8236 +harmingleveliipot,373,8236 +damageleveliipot,373,8236 +dmgleveliipot,373,8236 +harminglevel2pot,373,8236 +damagelevel2pot,373,8236 +dmglevel2pot,373,8236 +harmingiipot,373,8236 +damageiipot,373,8236 +dmgiipot,373,8236 +d2pot,373,8236 +regenerationextendedpotion,373,8257 +regenerateextendedpotion,373,8257 +regenextendepotion,373,8257 +regenerationexpotion,373,8257 +regenerateexpotion,373,8257 +regenexpotion,373,8257 +regenerationextendedpot,373,8257 +regenerateextendedpot,373,8257 +regenextendepot,373,8257 +regenerationexpot,373,8257 +regenerateexpot,373,8257 +regenexpot,373,8257 +repot,373,8257 +swiftnessextendedpotion,373,8258 +swiftextendedpotion,373,8258 +speedextendedpotion,373,8258 +swiftnessexpotion,373,8258 +swiftexpotion,373,8258 +speedexpotion,373,8258 +swiftnessextendedpot,373,8258 +swiftextendedpot,373,8258 +speedextendedpot,373,8258 +swiftnessexpot,373,8258 +swiftexpot,373,8258 +speedexpot,373,8258 +swepot,373,8258 +fireresistanceextendedpotion,373,8259 +fireresistextendedpotion,373,8259 +fireresextendedpotion,373,8259 +fireresistanceexpotion,373,8259 +fireresistexpotion,373,8259 +fireresexpotion,373,8259 +fireresistanceextendedpot,373,8259 +fireresistextendedpot,373,8259 +fireresextendedpot,373,8259 +fireresistanceexpot,373,8259 +fireresistexpot,373,8259 +fireresexpot,373,8259 +fepot,373,8259 +poisonextendedpotion,373,8260 +acidextendedpotion,373,8260 +poisonexpotion,373,8260 +acidexpotion,373,8260 +poisonextendedpot,373,8260 +acidextendedpot,373,8260 +poisonexpot,373,8260 +acidexpot,373,8260 +pepot,373,8260 +nightvisionextendedpotion,373,8262 +nvisionextendedpotion,373,8262 +nightvextendedpotion,373,8262 +darkvisionextendedpotion,373,8262 +dvisionextendedpotion,373,8262 +darkvextendedpotion,373,8262 +nightvisionexpotion,373,8262 +nvisionexpotion,373,8262 +nightvexpotion,373,8262 +darkvisionexpotion,373,8262 +dvisionexpotion,373,8262 +darkvexpotion,373,8262 +nightvisionextendedpot,373,8262 +nvisionextendedpot,373,8262 +nightvextendedpot,373,8262 +darkvisionextendedpot,373,8262 +dvisionextendedpot,373,8262 +darkvextendedpot,373,8262 +nightvisionexpot,373,8262 +nvisionexpot,373,8262 +nightvexpot,373,8262 +darkvisionexpot,373,8262 +dvisionexpot,373,8262 +darkvexpot,373,8262 +nepot,373,8262 +weaknessextendedpotion,373,8264 +weakextendedpotion,373,8264 +weaknessexpotion,373,8264 +weakexpotion,373,8264 +weaknessextendedpot,373,8264 +weakextendedpot,373,8264 +weaknessexpot,373,8264 +weakexpot,373,8264 +wepot,373,8264 +strengthextendedpotion,373,8265 +strongextendedpotion,373,8265 +strextendedpotion,373,8265 +strengthexpotion,373,8265 +strongexpotion,373,8265 +strexpotion,373,8265 +strengthextendedpot,373,8265 +strongextendedpot,373,8265 +strextendedpot,373,8265 +strengthexpot,373,8265 +strongexpot,373,8265 +strexpot,373,8265 +stepot,373,8265 +slownessextendedpotion,373,8266 +slowextenedpotion,373,8266 +slownessexpotion,373,8266 +slowexpotion,373,8266 +slownessextendedpot,373,8266 +slowextenedpot,373,8266 +slownessexpot,373,8266 +slowexpot,373,8266 +slepot,373,8266 +waterbreathingextendedpotion,373,8269 +waterbreathextendedpotion,373,8269 +breathingextendedpotion,373,8269 +breathextendedpotion,373,8269 +waterbreathingextendedpot,373,8269 +waterbreathextendedpot,373,8269 +breathingextendedpot,373,8269 +breathextendedpot,373,8269 +waterbreathingexpotion,373,8269 +waterbreathexpotion,373,8269 +breathingexpotion,373,8269 +breathexpotion,373,8269 +waterbreathingexpot,373,8269 +waterbreathexpot,373,8269 +breathingexpot,373,8269 +breathexpot,373,8269 +wbepot,373,8269 +invisibilityextendedpotion,373,8270 +invisibleextendedpotion,373,8270 +invextendedpotion,373,8270 +invisibilityexpotion,373,8270 +invisibleexpotion,373,8270 +invexpotion,373,8270 +invisibilityextendedpot,373,8270 +invisibleextendedpot,373,8270 +invextendedpot,373,8270 +invisibilityexpot,373,8270 +invisibleexpot,373,8270 +invexpot,373,8270 +iepot,373,8270 +regenerationdualbitpotion,373,8289 +regeneratedualbitpotion,373,8289 +regendualbitpotion,373,8289 +regenerationdbpotion,373,8289 +regeneratedbpotion,373,8289 +regendbpotion,373,8289 +regenerationdualbitpot,373,8289 +regeneratedualbitpot,373,8289 +regendualbitpot,373,8289 +regenerationdbpot,373,8289 +regeneratedbpot,373,8289 +regendbpot,373,8289 +rdbpot,373,8289 +swiftnessdualbitpotion,373,8290 +swiftdualbitpotion,373,8290 +speeddualbitpotion,373,8290 +swiftnessdualbitpot,373,8290 +swiftdualbitpot,373,8290 +speeddualbitpot,373,8290 +swiftnessdbpotion,373,8290 +swiftdbpotion,373,8290 +speeddbpotion,373,8290 +swiftnessdbpot,373,8290 +swiftdbpot,373,8290 +speeddbpot,373,8290 +swdbpot,373,8290 +poisondualbitpotion,373,8292 +aciddualbitpotion,373,8292 +poisondualbitpot,373,8292 +aciddualbitpot,373,8292 +poisondbpotion,373,8292 +aciddbpotion,373,8292 +poisondbpot,373,8292 +aciddbpot,373,8292 +pdbpot,373,8292 +strengthdualbitpotion,373,8297 +strongdualbitpotion,373,8297 +strdualbitpotion,373,8297 +strengthdualbitpot,373,8297 +strongdualbitpot,373,8297 +strdualbitpot,373,8297 +strengthdbpotion,373,8297 +strongdbpotion,373,8297 +strdbpotion,373,8297 +strengthdbpot,373,8297 +strongdbpot,373,8297 +strdbpot,373,8297 +stdbpot,373,8297 +splashmundanepotion,373,16384 +splmundanepotion,373,16384 +splashregenerationpotion,373,16385 +splashregeneratepotion,373,16385 +splashregenpotion,373,16385 +splashregenerationpot,373,16385 +splashregeneratepot,373,16385 +splashregenpot,373,16385 +regenerationsplashpotion,373,16385 +regeneratesplashpotion,373,16385 +regensplashpotion,373,16385 +splregenerationpotion,373,16385 +splregeneratepotion,373,16385 +splregenpotion,373,16385 +splregenerationpot,373,16385 +splregeneratepot,373,16385 +splregenpot,373,16385 +sprpot,373,16385 +splashswiftnesspotion,373,16386 +splashswiftpotion,373,16386 +splashspeedpotion,373,16386 +splashswiftnesspot,373,16386 +splashswiftpot,373,16386 +splashspeedpot,373,16386 +splswiftnesspotion,373,16386 +splswiftpotion,373,16386 +splspeedpotion,373,16386 +splswiftnesspot,373,16386 +splswiftpot,373,16386 +splspeedpot,373,16386 +spswpot,373,16386 +splashfireresistancepotion,373,16387 +splashfireresistpotion,373,16387 +splashfirerespotion,373,16387 +splashfireresistancepot,373,16387 +splashfireresistpot,373,16387 +splashfirerespot,373,16387 +splfireresistancepotion,373,16387 +splfireresistpotion,373,16387 +splfirerespotion,373,16387 +splfireresistancepot,373,16387 +splfireresistpot,373,16387 +splfirerespot,373,16387 +spfpot,373,16387 +splashpoisonpotion,373,16388 +splashacidpotion,373,16388 +splashpoisonpot,373,16388 +splashacidpot,373,16388 +splpoisonpotion,373,16388 +splacidpotion,373,16388 +splpoisonpot,373,16388 +splacidpot,373,16388 +spppot,373,16388 +splashhealingpotion,373,16389 +splashhealpotion,373,16389 +splashlifepotion,373,16389 +splashhealingpot,373,16389 +splashhealpot,373,16389 +splashlifepot,373,16389 +splhealingpotion,373,16389 +splhealpotion,373,16389 +spllifepotion,373,16389 +splhealingpot,373,16389 +splhealpot,373,16389 +spllifepot,373,16389 +sphpot,373,16389 +splashclearpotion,373,16390 +splashclearpot,373,16390 +splclearpotion,373,16390 +splclearpot,373,16390 +splashnightvisionpotion,373,16390 +splashnvisionpotion,373,16390 +splashnightvpotion,373,16390 +splashdarkvisionpotion,373,16390 +splashdvisionpotion,373,16390 +splashdarkvpotion,373,16390 +splashnightvisionpot,373,16390 +splashnvisionpot,373,16390 +splashnightvpot,373,16390 +splashdarkvisionpot,373,16390 +splashdvisionpot,373,16390 +splashdarkvpot,373,16390 +splnightvisionpotion,373,16390 +splnvisionpotion,373,16390 +splnightvpotion,373,16390 +spldarkvisionpotion,373,16390 +spldvisionpotion,373,16390 +spldarkvpotion,373,16390 +splnightvisionpot,373,16390 +splnvisionpot,373,16390 +splnightvpot,373,16390 +spldarkvisionpot,373,16390 +spldvisionpot,373,16390 +spldarkvpot,373,16390 +spnpot,373,16390 +splashclearextendedpotion,373,16391 +splashclearexpotion,373,16391 +splashclear2potion,373,16391 +splashclearextendedpot,373,16391 +splashclearexpot,373,16391 +splashclear2pot,373,16391 +splclearextendedpotion,373,16391 +splclearexpotion,373,16391 +splclear2potion,373,16391 +splclearextendedpot,373,16391 +splclearexpot,373,16391 +splclear2pot,373,16391 +splashweaknesspotion,373,16392 +splashweakpotion,373,16392 +splashweaknesspot,373,16392 +splashweakpot,373,16392 +splweaknesspotion,373,16392 +splweakpotion,373,16392 +splweaknesspot,373,16392 +splweakpot,373,16392 +spwpot,373,16392 +splashstrengthpotion,373,16393 +splashstrongpotion,373,16393 +splashstrpotion,373,16393 +splashstrengthpot,373,16393 +splashstrongpot,373,16393 +splashstrpot,373,16393 +splstrengthpotion,373,16393 +splstrongpotion,373,16393 +splstrpotion,373,16393 +splstrengthpot,373,16393 +splstrongpot,373,16393 +splstrpot,373,16393 +spstpot,373,16393 +splashslownesspotion,373,16394 +splashslowpotion,373,16394 +splashslownesspot,373,16394 +splashslowpot,373,16394 +splslownesspotion,373,16394 +splslowpotion,373,16394 +splslownesspot,373,16394 +splslowpot,373,16394 +spslpot,373,16394 +splashdiffusepotion,373,16395 +splashdiffusepot,373,16395 +spldiffusepotion,373,16395 +spldiffusepot,373,16395 +splashharmingpotion,373,16396 +splashdamagepotion,373,16396 +splashdmgpotion,373,16396 +splashharmingpot,373,16396 +splashdamagepot,373,16396 +splashdmgpot,373,16396 +splharmingpotion,373,16396 +spldamagepotion,373,16396 +spldmgpotion,373,16396 +splharmingpot,373,16396 +spldamagepot,373,16396 +spldmgpot,373,16396 +spdpot,373,16396 +splashartlesspotion,373,16397 +splashartlesspot,373,16397 +splartlesspotion,373,16397 +splartlesspot,373,16397 +splashwaterbreathingpotion,373,16397 +splashwaterbreathpotion,373,16397 +splashbreathingpotion,373,16397 +splashbreathpotion,373,16397 +splashwaterbreathingpot,373,16397 +splashwaterbreathpot,373,16397 +splashbreathingpot,373,16397 +splashbreathpot,373,16397 +splwaterbreathingpotion,373,16397 +splwaterbreathpotion,373,16397 +splbreathingpotion,373,16397 +splbreathpotion,373,16397 +splwaterbreathingpot,373,16397 +splwaterbreathpot,373,16397 +splbreathingpot,373,16397 +splbreathpot,373,16397 +spwbpot,373,16397 +splashthinpotion,373,16398 +splashthinpot,373,16398 +splthinpotion,373,16398 +splthinpot,373,16398 +splashinvisibilitypotion,373,16398 +splashinvisiblepotion,373,16398 +splashinvpotion,373,16398 +splashinvisibilitypot,373,16398 +splashinvisiblepot,373,16398 +splashinvpot,373,16398 +splinvisibilitypotion,373,16398 +splinvisiblepotion,373,16398 +splinvpotion,373,16398 +splinvisibilitypot,373,16398 +splinvisiblepot,373,16398 +splinvpot,373,16398 +spipot,373,16398 +splashthinextendedpotion,373,16399 +splashthinexpotion,373,16399 +splashthin2potion,373,16399 +splashthinextendedpot,373,16399 +splashthinexpot,373,16399 +splashthin2pot,373,16399 +splthinextendedpotion,373,16399 +splthinexpotion,373,16399 +splthin2potion,373,16399 +splthinextendedpot,373,16399 +splthinexpot,373,16399 +splthin2pot,373,16399 +splashawkwardpotion,373,16400 +splashawkwardpot,373,16400 +splawkwardpotion,373,16400 +splawkwardpot,373,16400 +splashbunglingpotion,373,16406 +splashbunglingpot,373,16406 +splbunglingpotion,373,16406 +splbunglingpot,373,16406 +splashbunglingextendedpotion,373,16407 +splashbunglingexpotion,373,16407 +splashbungling2potion,373,16407 +splashbunglingextendedpot,373,16407 +splashbunglingexpot,373,16407 +splashbungling2pot,373,16407 +splbunglingextendedpotion,373,16407 +splbunglingexpotion,373,16407 +splbungling2potion,373,16407 +splbunglingextendedpot,373,16407 +splbunglingexpot,373,16407 +splbungling2pot,373,16407 +splashsmoothpotion,373,16411 +splashsmoothpot,373,16411 +splsmoothpotion,373,16411 +splsmoothpot,373,16411 +splashsuavepotion,373,16413 +splashsuavepot,373,16413 +splsuavepotion,373,16413 +splsuavepot,373,16413 +splashdebonairpotion,373,16414 +splashdebonairpot,373,16414 +spldebonairpotion,373,16414 +spldebonairpot,373,16414 +splashdebonairextendedpotion,373,16415 +splashdebonairexpotion,373,16415 +splashdebonair2potion,373,16415 +splashdebonairextendedpot,373,16415 +splashdebonairexpot,373,16415 +splashdebonair2pot,373,16415 +spldebonairextendedpotion,373,16415 +spldebonairexpotion,373,16415 +spldebonair2potion,373,16415 +spldebonairextendedpot,373,16415 +spldebonairexpot,373,16415 +spldebonair2pot,373,16415 +splashthickpotion,373,16416 +splashthickpot,373,16416 +splthickpotion,373,16416 +splthickpot,373,16416 +splashregenerationleveliipotion,373,16417 +splashregenerateleveliipotion,373,16417 +splashregenleveliipotion,373,16417 +splashregenerationlevel2potion,373,16417 +splashregeneratelevel2potion,373,16417 +splashregenlevel2potion,373,16417 +splashregenerationiipotion,373,16417 +splashregenerateiipotion,373,16417 +splashregeniipotion,373,16417 +splashregenerationleveliipot,373,16417 +splashregenerateleveliipot,373,16417 +splashregenleveliipot,373,16417 +splashregenerationlevel2pot,373,16417 +splashregeneratelevel2pot,373,16417 +splashregenlevel2pot,373,16417 +splashregenerationiipot,373,16417 +splashregenerateiipot,373,16417 +splashregeniipot,373,16417 +splregenerationleveliipotion,373,16417 +splregenerateleveliipotion,373,16417 +splregenleveliipotion,373,16417 +splregenerationlevel2potion,373,16417 +splregeneratelevel2potion,373,16417 +splregenlevel2potion,373,16417 +splregenerationiipotion,373,16417 +splregenerateiipotion,373,16417 +splregeniipotion,373,16417 +splregenerationleveliipot,373,16417 +splregenerateleveliipot,373,16417 +splregenleveliipot,373,16417 +splregenerationlevel2pot,373,16417 +splregeneratelevel2pot,373,16417 +splregenlevel2pot,373,16417 +splregenerationiipot,373,16417 +splregenerateiipot,373,16417 +splregeniipot,373,16417 +spr2pot,373,16417 +splashswiftnessleveliipotion,373,16418 +splashswiftleveliipotion,373,16418 +splashspeedleveliipotion,373,16418 +splashswiftnesslevel2potion,373,16418 +splashswiftlevel2potion,373,16418 +splashspeedlevel2potion,373,16418 +splashswiftnessiipotion,373,16418 +splashswiftiipotion,373,16418 +splashspeediipotion,373,16418 +splashswiftnessleveliipot,373,16418 +splashswiftleveliipot,373,16418 +splashspeedleveliipot,373,16418 +splashswiftnesslevel2pot,373,16418 +splashswiftlevel2pot,373,16418 +splashspeedlevel2pot,373,16418 +splashswiftnessiipot,373,16418 +splashswiftiipot,373,16418 +splashspeediipot,373,16418 +splswiftnessleveliipotion,373,16418 +splswiftleveliipotion,373,16418 +splspeedleveliipotion,373,16418 +splswiftnesslevel2potion,373,16418 +splswiftlevel2potion,373,16418 +splspeedlevel2potion,373,16418 +splswiftnessiipotion,373,16418 +splswiftiipotion,373,16418 +splspeediipotion,373,16418 +splswiftnessleveliipot,373,16418 +splswiftleveliipot,373,16418 +splspeedleveliipot,373,16418 +splswiftnesslevel2pot,373,16418 +splswiftlevel2pot,373,16418 +splspeedlevel2pot,373,16418 +splswiftnessiipot,373,16418 +splswiftiipot,373,16418 +splspeediipot,373,16418 +spsw2pot,373,16418 +splashpoisonleveliipotion,373,16420 +splashacidleveliipotion,373,16420 +splashpoisonlevel2potion,373,16420 +splashacidlevel2potion,373,16420 +splashpoisoniipotion,373,16420 +splashacidiipotion,373,16420 +splashpoisonleveliipot,373,16420 +splashacidleveliipot,373,16420 +splashpoisonlevel2pot,373,16420 +splashacidlevel2pot,373,16420 +splashpoisoniipot,373,16420 +splashacidiipot,373,16420 +splpoisonleveliipotion,373,16420 +splacidleveliipotion,373,16420 +splpoisonlevel2potion,373,16420 +splcidlevel2potion,373,16420 +splpoisoniipotion,373,16420 +splacidiipotion,373,16420 +splpoisonleveliipot,373,16420 +splacidleveliipot,373,16420 +splpoisonlevel2pot,373,16420 +splacidlevel2pot,373,16420 +splpoisoniipot,373,16420 +splacidiipot,373,16420 +spp2pot,373,16420 +splashhealingleveliipotion,373,16421 +splashhealleveliipotion,373,16421 +splashhealinglevel2potion,373,16421 +splashheallevel2potion,373,16421 +splashhealingiipotion,373,16421 +splashhealiipotion,373,16421 +splashhealingleveliipot,373,16421 +splashhealleveliipot,373,16421 +splashhealinglevel2pot,373,16421 +splashheallevel2pot,373,16421 +splashhealingiipot,373,16421 +splashhealiipot,373,16421 +splhealingleveliipotion,373,16421 +splhealleveliipotion,373,16421 +splhealinglevel2potion,373,16421 +splheallevel2potion,373,16421 +splhealingiipotion,373,16421 +splhealiipotion,373,16421 +splhealingleveliipot,373,16421 +splhealleveliipot,373,16421 +splhealinglevel2pot,373,16421 +splheallevel2pot,373,16421 +splhealingiipot,373,16421 +splhealiipot,373,16421 +sph2pot,373,16421 +splashcharmingpotion,373,16422 +splashcharmingpot,373,16422 +splcharmingpotion,373,16422 +splcharmingpot,373,16422 +splashcharmingextendedpotion,373,16423 +splashcharmingexpotion,373,16423 +splashcharming2potion,373,16423 +splashcharmingextendedpot,373,16423 +splashcharmingexpot,373,16423 +splashcharming2pot,373,16423 +splcharmingextendedpotion,373,16423 +splcharmingexpotion,373,16423 +splcharming2potion,373,16423 +splcharmingextendedpot,373,16423 +splcharmingexpot,373,16423 +splcharming2pot,373,16423 +splashstrengthleveliipotion,373,16425 +splashstrongleveliipotion,373,16425 +splashstrleveliipotion,373,16425 +splashstrengthlevel2potion,373,16425 +splashstronglevel2potion,373,16425 +splashstrlevel2potion,373,16425 +splashstrengthiipotion,373,16425 +splashstrongiipotion,373,16425 +splashstriipotion,373,16425 +splashstrengthleveliipot,373,16425 +splashstrongleveliipot,373,16425 +splashstrleveliipot,373,16425 +splashstrengthlevel2pot,373,16425 +splashstronglevel2pot,373,16425 +splashstrlevel2pot,373,16425 +splashstrengthiipot,373,16425 +splashstrongiipot,373,16425 +splashstriipot,373,16425 +splstrengthleveliipotion,373,16425 +splstrongleveliipotion,373,16425 +splstrleveliipotion,373,16425 +splstrengthlevel2potion,373,16425 +splstronglevel2potion,373,16425 +splstrlevel2potion,373,16425 +splstrengthiipotion,373,16425 +splstrongiipotion,373,16425 +splstriipotion,373,16425 +splstrengthleveliipot,373,16425 +splstrongleveliipot,373,16425 +splstrleveliipot,373,16425 +splstrengthlevel2pot,373,16425 +splstronglevel2pot,373,16425 +splstrlevel2pot,373,16425 +splstrengthiipot,373,16425 +splstrongiipot,373,16425 +splstriipot,373,16425 +spst2pot,373,16425 +splashrefinedpotion,373,16427 +splashrefinedpot,373,16427 +splrefinedpotion,373,16427 +splrefinedpot,373,16427 +splashharmingleveliipotion,373,16428 +splashdamageleveliipotion,373,16428 +splashdmgleveliipotion,373,16428 +splashharminglevel2potion,373,16428 +splashdamagelevel2potion,373,16428 +splashdmglevel2potion,373,16428 +splashharmingiipotion,373,16428 +splashdamageiipotion,373,16428 +splashdmgiipotion,373,16428 +splashharmingleveliipot,373,16428 +splashdamageleveliipot,373,16428 +splashdmgleveliipot,373,16428 +splashharminglevel2pot,373,16428 +splashdamagelevel2pot,373,16428 +splashdmglevel2pot,373,16428 +splashharmingiipot,373,16428 +splashdamageiipot,373,16428 +splashdmgiipot,373,16428 +splharmingleveliipotion,373,16428 +spldamageleveliipotion,373,16428 +spldmgleveliipotion,373,16428 +splharminglevel2potion,373,16428 +spldamagelevel2potion,373,16428 +spldmglevel2potion,373,16428 +splharmingiipotion,373,16428 +spldamageiipotion,373,16428 +spldmgiipotion,373,16428 +splharmingleveliipot,373,16428 +spldamageleveliipot,373,16428 +spldmgleveliipot,373,16428 +splharminglevel2pot,373,16428 +spldamagelevel2pot,373,16428 +spldmglevel2pot,373,16428 +splharmingiipot,373,16428 +spldamageiipot,373,16428 +spldmgiipot,373,16428 +spd2pot,373,16428 +splashcordialpotion,373,16429 +splashcordialpot,373,16429 +splcordialpotion,373,16429 +splcordialpot,373,16429 +splashsparklingpotion,373,16430 +splashsparklingpot,373,16430 +splsparklingpotion,373,16430 +splsparklingpot,373,16430 +splashsparklingextendedpotion,373,16431 +splashsparklingexpotion,373,16431 +splashsparkling2potion,373,16431 +splashsparklingextendedpot,373,16431 +splashsparklingexpot,373,16431 +splashsparkling2pot,373,16431 +splsparklingextendedpotion,373,16431 +splsparklingexpotion,373,16431 +splsparkling2potion,373,16431 +splsparklingextendedpot,373,16431 +splsparklingexpot,373,16431 +splsparkling2pot,373,16431 +splashpotentpotion,373,16432 +splashpotentpot,373,16432 +splpotentpotion,373,16432 +splpotentpot,373,16432 +splashrankpotion,373,16438 +splashrankpot,373,16438 +splrankpotion,373,16438 +splrankpot,373,16438 +splashrankextendedpotion,373,16439 +splashrankexpotion,373,16439 +splashrank2potion,373,16439 +splashrankextendedpot,373,16439 +splashrankexpot,373,16439 +splashrank2pot,373,16439 +splrankextendedpotion,373,16439 +splrankexpotion,373,16439 +splrank2potion,373,16439 +splrankextendedpot,373,16439 +splrankexpot,373,16439 +splrank2pot,373,16439 +splashacridpotion,373,16443 +splashacridpot,373,16443 +splacridpotion,373,16443 +splacridpot,373,16443 +splashgrosspotion,373,16445 +splashgrosspot,373,16445 +splgrosspotion,373,16445 +splgrosspot,373,16445 +splashstinkypotion,373,16446 +splashstinkypot,373,16446 +splstinkypotion,373,16446 +splstinkypot,373,16446 +splashstinkyextendedpotion,373,16447 +splashstinkyexpotion,373,16447 +splashstinky2potion,373,16447 +splashstinkyextendedpot,373,16447 +splashstinkyexpot,373,16447 +splashstinky2pot,373,16447 +splstinkyextendedpotion,373,16447 +splstinkyexpotion,373,16447 +splstinky2potion,373,16447 +splstinkyextendedpot,373,16447 +splstinkyexpot,373,16447 +splstinky2pot,373,16447 +splashmundaneextendedpotion,373,16448 +splashmundaneexpotion,373,16448 +splashmundane2potion,373,16448 +splashmundaneextendedpot,373,16448 +splashmundaneexpot,373,16448 +splashmundane2pot,373,16448 +splmundaneextendedpotion,373,16448 +splmundaneexpotion,373,16448 +splmundane2potion,373,16448 +splmundaneextendedpot,373,16448 +splmundaneexpot,373,16448 +splmundane2pot,373,16448 +splashregenerationextendedpotion,373,16449 +splashregenerateextendedpotion,373,16449 +splashregenextendepotion,373,16449 +splashregenerationexpotion,373,16449 +splashregenerateexpotion,373,16449 +splashregenexpotion,373,16449 +splashregenerationextendedpot,373,16449 +splashregenerateextendedpot,373,16449 +splashregenextendepot,373,16449 +splashregenerationexpot,373,16449 +splashregenerateexpot,373,16449 +splashregenexpot,373,16449 +splregenerationextendedpotion,373,16449 +splregenerateextendedpotion,373,16449 +splregenextendepotion,373,16449 +splregenerationexpotion,373,16449 +splregenerateexpotion,373,16449 +splregenexpotion,373,16449 +splregenerationextendedpot,373,16449 +splregenerateextendedpot,373,16449 +splregenextendepot,373,16449 +splregenerationexpot,373,16449 +splregenerateexpot,373,16449 +splregenexpot,373,16449 +sprepot,373,16449 +splashswiftnessextendedpotion,373,16450 +splashswiftextendedpotion,373,16450 +splashspeedextendedpotion,373,16450 +splashswiftnessexpotion,373,16450 +splashswiftexpotion,373,16450 +splashspeedexpotion,373,16450 +splashswiftnessextendedpot,373,16450 +splashswiftextendedpot,373,16450 +splashspeedextendedpot,373,16450 +splashswiftnessexpot,373,16450 +splashswiftexpot,373,16450 +splashspeedexpot,373,16450 +splswiftnessextendedpotion,373,16450 +splswiftextendedpotion,373,16450 +splspeedextendedpotion,373,16450 +splswiftnessexpotion,373,16450 +splswiftexpotion,373,16450 +splspeedexpotion,373,16450 +splswiftnessextendedpot,373,16450 +splswiftextendedpot,373,16450 +splspeedextendedpot,373,16450 +splswiftnessexpot,373,16450 +splswiftexpot,373,16450 +splspeedexpot,373,16450 +spswepot,373,16450 +splashfireresistanceextendedpotion,373,16451 +splashfireresistextendedpotion,373,16451 +splashfireresextendedpotion,373,16451 +splashfireresistanceexpotion,373,16451 +splashfireresistexpotion,373,16451 +splashfireresexpotion,373,16451 +splashfireresistanceextendedpot,373,16451 +splashfireresistextendedpot,373,16451 +splashfireresextendedpot,373,16451 +splashfireresistanceexpot,373,16451 +splashfireresistexpot,373,16451 +splashfireresexpot,373,16451 +splfireresistanceextendedpotion,373,16451 +splfireresistextendedpotion,373,16451 +splfireresextendedpotion,373,16451 +splfireresistanceexpotion,373,16451 +splfireresistexpotion,373,16451 +splfireresexpotion,373,16451 +splfireresistanceextendedpot,373,16451 +splfireresistextendedpot,373,16451 +splfireresextendedpot,373,16451 +splfireresistanceexpot,373,16451 +splfireresistexpot,373,16451 +splfireresexpot,373,16451 +spfepot,373,16451 +splashpoisonextendedpotion,373,16452 +splashacidextendedpotion,373,16452 +splashpoisonexpotion,373,16452 +splashacidexpotion,373,16452 +splashpoisonextendedpot,373,16452 +splashacidextendedpot,373,16452 +splashpoisonexpot,373,16452 +splashacidexpot,373,16452 +splpoisonextendedpotion,373,16452 +splacidextendedpotion,373,16452 +splpoisonexpotion,373,16452 +splacidexpotion,373,16452 +splpoisonextendedpot,373,16452 +splacidextendedpot,373,16452 +splpoisonexpot,373,16452 +splacidexpot,373,16452 +sppepot,373,16452 +splashnightvisionextendedpotion,373,16454 +splashnvisionextendedpotion,373,16454 +splashnightvextendedpotion,373,16454 +splashdarkvisionextendedpotion,373,16454 +splashdvisionextendedpotion,373,16454 +splashdarkvextendedpotion,373,16454 +splashnightvisionextendedpot,373,16454 +splashnvisionextendedpot,373,16454 +splashnightvextendedpot,373,16454 +splashdarkvisionextendedpot,373,16454 +splashdvisionextendedpot,373,16454 +splashdarkvextendedpot,373,16454 +splashnightvisionexpotion,373,16454 +splashnvisionexpotion,373,16454 +splashnightvexpotion,373,16454 +splashdarkvisionexpotion,373,16454 +splashdvisionexpotion,373,16454 +splashdarkvexpotion,373,16454 +splashnightvisionexpot,373,16454 +splashnvisionexpot,373,16454 +splashnightvexpot,373,16454 +splashdarkvisionexpot,373,16454 +splashdvisionexpot,373,16454 +splashdarkvexpot,373,16454 +splnightvisionextendedpotion,373,16454 +splnvisionextendedpotion,373,16454 +splnightvextendedpotion,373,16454 +spldarkvisionextendedpotion,373,16454 +spldvisionextendedpotion,373,16454 +spldarkvextendedpotion,373,16454 +splnightvisionextendedpot,373,16454 +splnvisionextendedpot,373,16454 +splnightvextendedpot,373,16454 +spldarkvisionextendedpot,373,16454 +spldvisionextendedpot,373,16454 +spldarkvextendedpot,373,16454 +splnightvisionexpotion,373,16454 +splnvisionexpotion,373,16454 +splnightvexpotion,373,16454 +spldarkvisionexpotion,373,16454 +spldvisionexpotion,373,16454 +spldarkvexpotion,373,16454 +splnightvisionexpot,373,16454 +splnvisionexpot,373,16454 +splnightvexpot,373,16454 +spldarkvisionexpot,373,16454 +spldvisionexpot,373,16454 +spldarkvexpot,373,16454 +spnepot,373,16454 +splashweaknessextendedpotion,373,16456 +splashweakextendedpotion,373,16456 +splashweaknessexpotion,373,16456 +splashweakexpotion,373,16456 +splashweaknessextendedpot,373,16456 +splashweakextendedpot,373,16456 +splashweaknessexpot,373,16456 +splashweakexpot,373,16456 +splweaknessextendedpotion,373,16456 +sphweakextendedpotion,373,16456 +splweaknessexpotion,373,16456 +splweakexpotion,373,16456 +splweaknessextendedpot,373,16456 +splweakextendedpot,373,16456 +splweaknessexpot,373,16456 +splweakexpot,373,16456 +spwepot,373,16456 +splashstrengthextendedpotion,373,16457 +splashstrongextendedpotion,373,16457 +splashstrextendedpotion,373,16457 +splashstrengthexpotion,373,16457 +splashstrongexpotion,373,16457 +splashstrexpotion,373,16457 +splashstrengthextendedpot,373,16457 +splashstrongextendedpot,373,16457 +splashstrextendedpot,373,16457 +splashstrengthexpot,373,16457 +splashstrongexpot,373,16457 +splashstrexpot,373,16457 +splstrengthextendedpotion,373,16457 +splstrongextendedpotion,373,16457 +splstrextendedpotion,373,16457 +splstrengthexpotion,373,16457 +splstrongexpotion,373,16457 +splstrexpotion,373,16457 +splstrengthextendedpot,373,16457 +splstrongextendedpot,373,16457 +splstrextendedpot,373,16457 +splstrengthexpot,373,16457 +splstrongexpot,373,16457 +splstrexpot,373,16457 +spstepot,373,16457 +splashslownessextendedpotion,373,16458 +splashslowextenedpotion,373,16458 +splashslownessexpotion,373,16458 +splashslowexpotion,373,16458 +splashslownessextendedpot,373,16458 +splashslowextenedpot,373,16458 +splashslownessexpot,373,16458 +splashslowexpot,373,16458 +splslownessextendedpotion,373,16458 +splslowextenedpotion,373,16458 +splslownessexpotion,373,16458 +splslowexpotion,373,16458 +splslownessextendedpot,373,16458 +splslowextenedpot,373,16458 +splslownessexpot,373,16458 +splslowexpot,373,16458 +spslepot,373,16458 +splashwaterbreathingextendedpotion,373,16461 +splashwaterbreathextendedpotion,373,16461 +splashbreathingextendedpotion,373,16461 +splashbreathextendedpotion,373,16461 +splashwaterbreathingextendedpot,373,16461 +splashwaterbreathextendedpot,373,16461 +splashbreathingextendedpot,373,16461 +splashbreathextendedpot,373,16461 +splwaterbreathingextendedpotion,373,16461 +splwaterbreathextendedpotion,373,16461 +splbreathingextendedpotion,373,16461 +splbreathextendedpotion,373,16461 +splwaterbreathingextendedpot,373,16461 +splwaterbreathextendedpot,373,16461 +splbreathingextendedpot,373,16461 +splbreathextendedpot,373,16461 +splashwaterbreathingexpotion,373,16461 +splashwaterbreathexpotion,373,16461 +splashbreathingexpotion,373,16461 +splashbreathexpotion,373,16461 +splashwaterbreathingexpot,373,16461 +splashwaterbreathexpot,373,16461 +splashbreathingexpot,373,16461 +splashbreathexpot,373,16461 +splwaterbreathingexpotion,373,16461 +splwaterbreathexpotion,373,16461 +splbreathingexpotion,373,16461 +splbreathexpotion,373,16461 +splwaterbreathingexpot,373,16461 +splwaterbreathexpot,373,16461 +splbreathingexpot,373,16461 +splbreathexpot,373,16461 +spwbepot,373,16461 +splashinvisibilityextendedpotion,373,16462 +splashinvisibleextendedpotion,373,16462 +splashinvextendedpotion,373,16462 +splashinvisibilityextendedpot,373,16462 +splashinvisibleextendedpot,373,16462 +splashinvextendedpot,373,16462 +splashinvisibilityexpotion,373,16462 +splashinvisibleexpotion,373,16462 +splashinvexpotion,373,16462 +splashinvisibilityexpot,373,16462 +splashinvisibleexpot,373,16462 +splashinvexpot,373,16462 +splinvisibilityextendedpotion,373,16462 +splinvisibleextendedpotion,373,16462 +splinvextendedpotion,373,16462 +splinvisibilityextendedpot,373,16462 +splinvisibleextendedpot,373,16462 +splinvextendedpot,373,16462 +splinvisibilityexpotion,373,16462 +splinvisibleexpotion,373,16462 +splinvexpotion,373,16462 +splinvisibilityexpot,373,16462 +splinvisibleexpot,373,16462 +splinvexpot,373,16462 +spiepot,373,16462 +splashregenerationdualbitpotion,373,16481 +splashregeneratedualbitpotion,373,16481 +splashregendualbitpotion,373,16481 +splashregenerationdualbitpot,373,16481 +splashregeneratedualbitpot,373,16481 +splashregendualbitpot,373,16481 +splregenerationdualbitpotion,373,16481 +splregeneratedualbitpotion,373,16481 +splregendualbitpotion,373,16481 +splregenerationdualbitpot,373,16481 +splregeneratedualbitpot,373,16481 +splregendualbitpot,373,16481 +splashregenerationdbpotion,373,16481 +splashregeneratedbpotion,373,16481 +splashregendbpotion,373,16481 +splashregenerationdbpot,373,16481 +splashregeneratedbpot,373,16481 +splashregendbpot,373,16481 +splregenerationdbpotion,373,16481 +splregeneratedbpotion,373,16481 +splregendbpotion,373,16481 +splregenerationdbpot,373,16481 +splregeneratedbpot,373,16481 +splregendbpot,373,16481 +sprdbpot,373,16481 +splashswiftnessdualbitpotion,373,16482 +splashswiftdualbitpotion,373,16482 +splashspeeddualbitpotion,373,16482 +splashswiftnessdualbitpot,373,16482 +splashswiftdualbitpot,373,16482 +splashspeeddualbitpot,373,16482 +splswiftnessdualbitpotion,373,16482 +splswiftdualbitpotion,373,16482 +splspeeddualbitpotion,373,16482 +splswiftnessdualbitpot,373,16482 +splswiftdualbitpot,373,16482 +splspeeddualbitpot,373,16482 +splashswiftnessdbpotion,373,16482 +splashswiftdbpotion,373,16482 +splashspeeddbpotion,373,16482 +splashswiftnessdbpot,373,16482 +splashswiftdbpot,373,16482 +splashspeeddbpot,373,16482 +splswiftnessdbpotion,373,16482 +splswiftdbpotion,373,16482 +splspeeddbpotion,373,16482 +splswiftnessdbpot,373,16482 +splswiftdbpot,373,16482 +splspeeddbpot,373,16482 +spswdbpot,373,16482 +splashpoisondualbitpotion,373,16484 +splashaciddualbitpotion,373,16484 +splashpoisondualbitpot,373,16484 +splashaciddualbitpot,373,16484 +splpoisondualbitpotion,373,16484 +splaciddualbitpotion,373,16484 +splpoisondualbitpot,373,16484 +splaciddualbitpot,373,16484 +splashpoisondbpotion,373,16484 +splashaciddbpotion,373,16484 +splashpoisondbpot,373,16484 +splashaciddbpot,373,16484 +splpoisondbpotion,373,16484 +splaciddbpotion,373,16484 +splpoisondbpot,373,16484 +splaciddbpot,373,16484 +sppdbpot,373,16484 +splashstrengthdualbitpotion,373,16489 +splashstrongdualbitpotion,373,16489 +splashstrdualbitpotion,373,16489 +splashstrengthdualbitpot,373,16489 +splashstrongdualbitpot,373,16489 +splashstrdualbitpot,373,16489 +splstrengthdualbitpotion,373,16489 +splstrongdualbitpotion,373,16489 +splstrdualbitpotion,373,16489 +splstrengthdualbitpot,373,16489 +splstrongdualbitpot,373,16489 +splstrdualbitpot,373,16489 +splashstrengthdbpotion,373,16489 +splashstrongdbpotion,373,16489 +splashstrdbpotion,373,16489 +splashstrengthdbpot,373,16489 +splashstrongdbpot,373,16489 +splashstrdbpot,373,16489 +splstrengthdbpotion,373,16489 +splstrongdbpotion,373,16489 +splstrdbpotion,373,16489 +splstrengthdbpot,373,16489 +splstrongdbpot,373,16489 +splstrdbpot,373,16489 +spstdbpot,373,16489 +glassbottle,374,0 +bottle,374,0 +gbottle,374,0 +gvase,374,0 +vase,374,0 +glassvase,374,0 +emptyglassbottle,374,0 +emptybottle,374,0 +emptygbottle,374,0 +emptygvase,374,0 +emptyvase,374,0 +emptyglassvase,374,0 +eglassbottle,374,0 +ebottle,374,0 +egbottle,374,0 +egvase,374,0 +evase,374,0 +eglassvase,374,0 +spidereye,375,0 +eyeofspider,375,0 +seye,375,0 +fermentedspidereye,376,0 +craftedspidereye,376,0 +fspidereye,376,0 +cspidereye,376,0 +fermentedeyeofspider,376,0 +craftedeyeofspider,376,0 +feyeofspider,376,0 +ceyeofspider,376,0 +fermentedseye,376,0 +craftedseye,376,0 +fseye,376,0 +cseye,376,0 +blazepowder,377,0 +blazedust,377,0 +goldpowder,377,0 +golddust,377,0 +gdust,377,0 +gpowder,377,0 +bpowder,377,0 +bdust,377,0 +magmacream,378,0 +goldcream,378,0 +blazecream,378,0 +mcream,378,0 +gcream,378,0 +bcream,378,0 +combinedcream,378,0 +ccream,378,0 +bstand,379,0 +pstand,379,0 +brewingstand,379,0 +potionstand,379,0 +cauldron,380,0 +steelcauldron,380,0 +ironcauldron,380,0 +icauldron,380,0 +scauldron,380,0 +potioncauldron,380,0 +pcauldron,380,0 +eyeofender,381,0 +endereye,381,0 +endeye,381,0 +evilendereye,381,0 +evileyeofender,381,0 +evilenderpearl,381,0 +eeye,381,0 +eofender,381,0 +glisteringmelon,382,0 +speckledmelon,382,0 +goldmelon,382,0 +sparklymelon,382,0 +shiningmelon,382,0 +gmelon,382,0 +smelon,382,0 +creeperegg,383,50 +eggcreeper,383,50 +skeletonegg,383,51 +eggskeleton,383,51 +spideregg,383,52 +eggspider,383,52 +giantegg,383,53 +egggiant,383,53 +zombieegg,383,54 +eggzombie,383,54 +slimeegg,383,55 +eggslime,383,55 +ghastegg,383,56 +eggghast,383,56 +zombiepigmanegg,383,57 +zpigmanegg,383,57 +pigmanegg,383,57 +zombiepmanegg,383,57 +zpmanegg,383,57 +zombiepigmegg,383,57 +zpigmegg,383,57 +zombiepigegg,383,57 +zpigegg,383,57 +zombiepmegg,383,57 +zombiepegg,383,57 +eggzombiepigman,383,57 +eggzpigman,383,57 +eggpigman,383,57 +eggzombiepman,383,57 +eggzpman,383,57 +eggzombiepigm,383,57 +eggzpigm,383,57 +eggzombiepig,383,57 +eggzpig,383,57 +eggzombiepm,383,57 +eggzombiep,383,57 +endermanegg,383,58 +eggenderman,383,58 +eggcavespider,383,59 +cavespideregg,383,59 +silverfishegg,383,60 +eggsilverfish,383,60 +blazeegg,383,61 +eggblaze,383,61 +lavaslimeegg,383,62 +lavacubeegg,383,62 +magmacubeegg,383,62 +magmaslimeegg,383,62 +egglavaslime,383,62 +egglavacube,383,62 +eggmagmacube,383,62 +eggmagmaslime,383,62 +bategg,383,65 +eggbat,383,65 +witchegg,383,66 +eggwitch,383,66 +pigegg,383,90 +eggpig,383,90 +sheepegg,383,91 +eggsheep,383,91 +cowegg,383,92 +eggcow,383,92 +chickenegg,383,93 +eggchicken,383,93 +squidegg,383,94 +eggsquid,383,94 +wolfegg,383,95 +eggwolf,383,95 +mooshroomegg,383,96 +mushroomcowegg,383,96 +eggmooshroom,383,96 +eggmushroomcow,383,96 +snowgolemegg,383,97 +sgolemegg,383,97 +eggsnowgolem,383,97 +eggsgolem,383,97 +ocelotegg,383,98 +eggocelot,383,98 +irongolemegg,383,99 +igolemegg,383,99 +eggirongolem,383,99 +eggigolem,383,99 +egghorse,383,100 +horseegg,383,100 +villageregg,383,120 +eggvillager,383,120 +bottleofenchanting,384,0 +enchantingbottle,384,0 +expbottle,384,0 +xpbottle,384,0 +bottleexp,384,0 +bottlexp,384,0 +enchantbottle,384,0 +bottleenchanting,384,0 +bottleenchant,384,0 +bottleoenchanting,384,0 +firecharge,385,0 +fireball,385,0 +grenade,385,0 +bookandquill,386,0 +booknquill,386,0 +bookandfeather,386,0 +booknfeather,386,0 +writeablebook,386,0 +writtenbook,387,0 +readablebook,387,0 +sealedbook,387,0 +diary,387,0 +ownedbook,387,0 +emerald,388,0 +itemframe,389,0 +pictureframe,389,0 +iframe,389,0 +pframe,389,0 +flowerpot,390,0 +pot,390,0 +carrot,391,0 +potato,392,0 +rawpotato,392,0 +bakedpotato,393,0 +roastedpotato,393,0 +cookedpotato,393,0 +bakepotato,393,0 +roastpotato,393,0 +cookpotato,393,0 +bpotato,393,0 +rpotato,393,0 +cpotato,393,0 +poisonouspotato,394,0 +poisonpotato,394,0 +ppotato,394,0 +emptymap,395,0 +map,395,0 +goldencarrot,396,0 +goldcarrot,396,0 +gcarrot,396,0 +head,397,0 +skeletonhead,397,0 +headskeleton,397,0 +skeletonskull,397,0 +skullskeleton,397,0 +witherhead,397,1 +witherskeletonhead,397,1 +wskeletionhead,397,1 +headwither,397,1 +headwitherskeleton,397,1 +headwskeletion,397,1 +witherskull,397,1 +witherskeletonskull,397,1 +wskeletionskull,397,1 +skullwither,397,1 +skullwitherskeleton,397,1 +skullwskeletion,397,1 +zombiehead,397,2 +headzombie,397,2 +zombieskull,397,2 +skullzombie,397,2 +playerhead,397,3 +humanhead,397,3 +stevehead,397,3 +headplayer,397,3 +headhuman,397,3 +headsteve,397,3 +playerskull,397,3 +humanskull,397,3 +steveskull,397,3 +skullplayer,397,3 +skullhuman,397,3 +skullsteve,397,3 +creeperhead,397,4 +headcreeper,397,4 +creeperskull,397,4 +skullcreeper,397,4 +carrotonastick,398,0 +carrotonstick,398,0 +netherstar,399,0 +hellstar,399,0 +nstar,399,0 +hstar,399,0 +star,399,0 +pumpkinpie,400,0 +pumpkincake,400,0 +ppie,400,0 +pcake,400,0 +pie,400,0 +fireworkrocket,401,0 +fireworkmissle,401,0 +firework,401,0 +fworkrocket,401,0 +fworkmissle,401,0 +fwork,401,0 +fwrocket,401,0 +fwmissle,401,0 +fireworkstar,402,0 +fworkstar,402,0 +fwstar,402,0 +fireworkball,402,0 +fworkball,402,0 +fwball,402,0 +fireworkpowder,402,0 +fworkpowder,402,0 +fwpowder,402,0 +fireworkcharge,402,0 +fworkcharge,402,0 +fwcharge,402,0 +enchantedbook,403,0 +enchantmentbook,403,0 +enchantingbook,403,0 +enchantbook,403,0 +magicalbook,403,0 +magicbook,403,0 +ebook,403,0 +mbook,403,0 +redstonecomparator,404,0 +redstonecomparer,404,0 +redstonecompare,404,0 +rstonecomparator,404,0 +rstonecomparer,404,0 +rstonecompare,404,0 +redscomparator,404,0 +redscomparer,404,0 +redscompare,404,0 +rscomparator,404,0 +rscomparer,404,0 +rscompare,404,0 +comparator,404,0 +comparer,404,0 +compare,404,0 +netherbrick,405,0 +nbrick,405,0 +hellbrick,405,0 +deathbrick,405,0 +dbrick,405,0 +hbrick,405,0 +netherquartz,406,0 +deathquartz,406,0 +hellquartz,406,0 +nquartz,406,0 +dquartz,406,0 +hquartz,406,0 +quartz,406,0 +tntminecart,407,0 +dynamiteminecart,407,0 +dynamitemcart,407,0 +dynamitecart,407,0 +bombminecart,407,0 +bombmcart,407,0 +bombcart,407,0 +tntmcart,407,0 +tntcart,407,0 +dminecart,407,0 +dmcart,407,0 +dcart,407,0 +bminecart,407,0 +bmcart,407,0 +bcart,407,0 +tminecart,407,0 +tmcart,407,0 +tcart,407,0 +hopperminecart,408,0 +hoppermcart,408,0 +hoppercart,408,0 +hopminecart,408,0 +hopmcart,408,0 +hopcart,408,0 +hminecart,408,0 +hmcart,408,0 +hcart,408,0 +ironhorsearmor,417,0 +ironharmor,417,0 +ironarmor,417,0 +ihorsearmor,417,0 +iharmor,417,0 +iarmor,417,0 +steelhorsearmor,417,0 +steelharmor,417,0 +steelarmor,417,0 +shorsearmor,417,0 +sharmor,417,0 +sarmor,417,0 +goldenhorsearmor,418,0 +goldenharmor,418,0 +goldenarmor,418,0 +goldhorsearmor,418,0 +goldharmor,418,0 +goldarmor,418,0 +ghorsearmor,418,0 +gharmor,418,0 +garmor,418,0 +diamondhorsearmor,419,0 +diamondharmor,419,0 +diamondarmor,419,0 +dhorsearmor,419,0 +dharmor,419,0 +darmor,419,0 +crystalhorsearmor,419,0 +crystalharmor,419,0 +crystalarmor,419,0 +chorsearmor,419,0 +charmor,419,0 +carmor,419,0 +lead,420,0 +leash,420,0 +rope,420,0 +nametag,421,0 +tag,421,0 +commandblockminecart,422,0 +cmdblockminecart,422,0 +cblockminecart,422,0 +commandminecart,422,0 +cmdminecart,422,0 +cbminecart,422,0 +commandblockcart,422,0 +cmdblockcart,422,0 +cblockcart,422,0 +commandcart,422,0 +cmdcart,422,0 +cbcart,422,0 +13disc,2256,0 +goldmusicrecord,2256,0 +goldmusicdisk,2256,0 +goldmusicdisc,2256,0 +goldmusiccd,2256,0 +13musicrecord,2256,0 +13musicdisk,2256,0 +13musicdisc,2256,0 +13musiccd,2256,0 +gomusicrecord,2256,0 +gomusicdisk,2256,0 +gomusicdisc,2256,0 +gomusiccd,2256,0 +goldmrecord,2256,0 +goldmdisk,2256,0 +goldmdisc,2256,0 +goldmcd,2256,0 +13mrecord,2256,0 +13mdisk,2256,0 +13mdisc,2256,0 +13mcd,2256,0 +gomrecord,2256,0 +gomdisk,2256,0 +gomdisc,2256,0 +gomcd,2256,0 +goldrecord,2256,0 +golddisk,2256,0 +golddisc,2256,0 +goldcd,2256,0 +13record,2256,0 +13disk,2256,0 +13cd,2256,0 +gorecord,2256,0 +godisk,2256,0 +godisc,2256,0 +gocd,2256,0 +record1,2256,0 +disk1,2256,0 +disc1,2256,0 +cd1,2256,0 +1record,2256,0 +1disk,2256,0 +1disc,2256,0 +1cd,2256,0 +catdisc,2257,0 +greenmusicrecord,2257,0 +greenmusicdisk,2257,0 +greenmusicdisc,2257,0 +greenmusiccd,2257,0 +catmusicrecord,2257,0 +catmusicdisk,2257,0 +catmusicdisc,2257,0 +catmusiccd,2257,0 +grmusicrecord,2257,0 +grmusicdisk,2257,0 +grmusicdisc,2257,0 +grmusiccd,2257,0 +greenmrecord,2257,0 +greenmdisk,2257,0 +greenmdisc,2257,0 +greenmcd,2257,0 +catmrecord,2257,0 +catmdisk,2257,0 +catmdisc,2257,0 +catmcd,2257,0 +grmrecord,2257,0 +grmdisk,2257,0 +grmdisc,2257,0 +grmcd,2257,0 +greenrecord,2257,0 +greendisk,2257,0 +greendisc,2257,0 +greencd,2257,0 +catrecord,2257,0 +catdisk,2257,0 +catcd,2257,0 +grrecord,2257,0 +grdisk,2257,0 +grdisc,2257,0 +grcd,2257,0 +record2,2257,0 +disk2,2257,0 +disc2,2257,0 +cd2,2257,0 +2record,2257,0 +2disk,2257,0 +2disc,2257,0 +2cd,2257,0 +blocksdisc,2258,0 +orangemusicrecord,2258,0 +orangemusicdisk,2258,0 +orangemusicdisc,2258,0 +orangemusiccd,2258,0 +blocksmusicrecord,2258,0 +blocksmusicdisk,2258,0 +blocksmusicdisc,2258,0 +blocksmusiccd,2258,0 +ormusicrecord,2258,0 +ormusicdisk,2258,0 +ormusicdisc,2258,0 +ormusiccd,2258,0 +orangemrecord,2258,0 +orangemdisk,2258,0 +orangemdisc,2258,0 +orangemcd,2258,0 +blocksmrecord,2258,0 +blocksmdisk,2258,0 +blocksmdisc,2258,0 +blocksmcd,2258,0 +ormrecord,2258,0 +ormdisk,2258,0 +ormdisc,2258,0 +ormcd,2258,0 +orangerecord,2258,0 +orangedisk,2258,0 +orangedisc,2258,0 +orangecd,2258,0 +blocksrecord,2258,0 +blocksdisk,2258,0 +blockscd,2258,0 +orrecord,2258,0 +ordisk,2258,0 +ordisc,2258,0 +orcd,2258,0 +record3,2258,0 +disk3,2258,0 +disc3,2258,0 +cd3,2258,0 +3record,2258,0 +3disk,2258,0 +3disc,2258,0 +3cd,2258,0 +chirpdisc,2259,0 +redmusicrecord,2259,0 +redmusicdisk,2259,0 +redmusicdisc,2259,0 +redmusiccd,2259,0 +chirpmusicrecord,2259,0 +chirpmusicdisk,2259,0 +chirpmusicdisc,2259,0 +chirpmusiccd,2259,0 +remusicrecord,2259,0 +remusicdisk,2259,0 +remusicdisc,2259,0 +remusiccd,2259,0 +redmrecord,2259,0 +redmdisk,2259,0 +redmdisc,2259,0 +redmcd,2259,0 +chirpmrecord,2259,0 +chirpmdisk,2259,0 +chirpmdisc,2259,0 +chirpmcd,2259,0 +remrecord,2259,0 +remdisk,2259,0 +remdisc,2259,0 +remcd,2259,0 +redrecord,2259,0 +reddisk,2259,0 +reddisc,2259,0 +redcd,2259,0 +chirprecord,2259,0 +chirpdisk,2259,0 +chirpcd,2259,0 +rerecord,2259,0 +redisk,2259,0 +redisc,2259,0 +recd,2259,0 +record4,2259,0 +disk4,2259,0 +disc4,2259,0 +cd4,2259,0 +4record,2259,0 +4disk,2259,0 +4disc,2259,0 +4cd,2259,0 +fardisc,2260,0 +lightgreenmusicrecord,2260,0 +lightgreenmusicdisk,2260,0 +lightgreenmusicdisc,2260,0 +lightgreenmusiccd,2260,0 +lgreenmusicrecord,2260,0 +lgreenmusicdisk,2260,0 +lgreenmusicdisc,2260,0 +lgreenmusiccd,2260,0 +lightgrmusicrecord,2260,0 +lightgrmusicdisk,2260,0 +lightgrmusicdisc,2260,0 +lightgrmusiccd,2260,0 +farmusicrecord,2260,0 +farmusicdisk,2260,0 +farmusicdisc,2260,0 +farmusiccd,2260,0 +lgrmusicrecord,2260,0 +lgrmusicdisk,2260,0 +lgrmusicdisc,2260,0 +lgrmusiccd,2260,0 +lightgreenmrecord,2260,0 +lightgreenmdisk,2260,0 +lightgreenmdisc,2260,0 +lightgreenmcd,2260,0 +lgreenmrecord,2260,0 +lgreenmdisk,2260,0 +lgreenmdisc,2260,0 +lgreenmcd,2260,0 +lightgrmrecord,2260,0 +lightgrmdisk,2260,0 +lightgrmdisc,2260,0 +lightgrmcd,2260,0 +farmrecord,2260,0 +farmdisk,2260,0 +farmdisc,2260,0 +farmcd,2260,0 +lgrmrecord,2260,0 +lgrmdisk,2260,0 +lgrmdisc,2260,0 +lgrmcd,2260,0 +lightgreenrecord,2260,0 +lightgreendisk,2260,0 +lightgreendisc,2260,0 +lightgreencd,2260,0 +lgreenrecord,2260,0 +lgreendisk,2260,0 +lgreendisc,2260,0 +lgreencd,2260,0 +lightgrrecord,2260,0 +lightgrdisk,2260,0 +lightgrdisc,2260,0 +lightgrcd,2260,0 +farrecord,2260,0 +fardisk,2260,0 +farcd,2260,0 +lgrrecord,2260,0 +lgrdisk,2260,0 +lgrdisc,2260,0 +lgrcd,2260,0 +record5,2260,0 +disk5,2260,0 +disc5,2260,0 +cd5,2260,0 +5record,2260,0 +5disk,2260,0 +5disc,2260,0 +5cd,2260,0 +malldisc,2261,0 +purplemusicrecord,2261,0 +purplemusicdisk,2261,0 +purplemusicdisc,2261,0 +purplemusiccd,2261,0 +mallmusicrecord,2261,0 +mallmusicdisk,2261,0 +mallmusicdisc,2261,0 +mallmusiccd,2261,0 +pumusicrecord,2261,0 +pumusicdisk,2261,0 +pumusicdisc,2261,0 +pumusiccd,2261,0 +purplemrecord,2261,0 +purplemdisk,2261,0 +purplemdisc,2261,0 +purplemcd,2261,0 +mallmrecord,2261,0 +mallmdisk,2261,0 +mallmdisc,2261,0 +mallmcd,2261,0 +pumrecord,2261,0 +pumdisk,2261,0 +pumdisc,2261,0 +pumcd,2261,0 +purplerecord,2261,0 +purpledisk,2261,0 +purpledisc,2261,0 +purplecd,2261,0 +mallrecord,2261,0 +malldisk,2261,0 +mallcd,2261,0 +purecord,2261,0 +pudisk,2261,0 +pudisc,2261,0 +pucd,2261,0 +record6,2261,0 +disk6,2261,0 +disc6,2261,0 +cd6,2261,0 +6record,2261,0 +6disk,2261,0 +6disc,2261,0 +6cd,2261,0 +mellohidisc,2262,0 +pinkmusicrecord,2262,0 +pinkmusicdisk,2262,0 +pinkmusicdisc,2262,0 +pinkmusiccd,2262,0 +mellohimusicrecord,2262,0 +mellohimusicdisk,2262,0 +mellohimusicdisc,2262,0 +mellohimusiccd,2262,0 +pimusicrecord,2262,0 +pimusicdisk,2262,0 +pimusicdisc,2262,0 +pimusiccd,2262,0 +pinkmrecord,2262,0 +pinkmdisk,2262,0 +pinkmdisc,2262,0 +pinkmcd,2262,0 +mellohimrecord,2262,0 +mellohimdisk,2262,0 +mellohimdisc,2262,0 +mellohimcd,2262,0 +pimrecord,2262,0 +pimdisk,2262,0 +pimdisc,2262,0 +pimcd,2262,0 +pinkrecord,2262,0 +pinkdisk,2262,0 +pinkdisc,2262,0 +pinkcd,2262,0 +mellohirecord,2262,0 +mellohidisk,2262,0 +mellohicd,2262,0 +pirecord,2262,0 +pidisk,2262,0 +pidisc,2262,0 +picd,2262,0 +record7,2262,0 +disk7,2262,0 +disc7,2262,0 +cd7,2262,0 +7record,2262,0 +7disk,2262,0 +7disc,2262,0 +7cd,2262,0 +staldisc,2263,0 +blackmusicrecord,2263,0 +blackmusicdisk,2263,0 +blackmusicdisc,2263,0 +blackmusiccd,2263,0 +stalmusicrecord,2263,0 +stalmusicdisk,2263,0 +stalmusicdisc,2263,0 +stalmusiccd,2263,0 +blmusicrecord,2263,0 +blmusicdisk,2263,0 +blmusicdisc,2263,0 +blmusiccd,2263,0 +blackmrecord,2263,0 +blackmdisk,2263,0 +blackmdisc,2263,0 +blackmcd,2263,0 +stalmrecord,2263,0 +stalmdisk,2263,0 +stalmdisc,2263,0 +stalmcd,2263,0 +blmrecord,2263,0 +blmdisk,2263,0 +blmdisc,2263,0 +blmcd,2263,0 +blackrecord,2263,0 +blackdisk,2263,0 +blackdisc,2263,0 +blackcd,2263,0 +stalrecord,2263,0 +staldisk,2263,0 +stalcd,2263,0 +blrecord,2263,0 +bldisk,2263,0 +bldisc,2263,0 +blcd,2263,0 +record8,2263,0 +disk8,2263,0 +disc8,2263,0 +cd8,2263,0 +8record,2263,0 +8disk,2263,0 +8disc,2263,0 +8cd,2263,0 +straddisc,2264,0 +whitemusicrecord,2264,0 +whitemusicdisk,2264,0 +whitemusicdisc,2264,0 +whitemusiccd,2264,0 +stradmusicrecord,2264,0 +stradmusicdisk,2264,0 +stradmusicdisc,2264,0 +stradmusiccd,2264,0 +whmusicrecord,2264,0 +whmusicdisk,2264,0 +whmusicdisc,2264,0 +whmusiccd,2264,0 +whitemrecord,2264,0 +whitemdisk,2264,0 +whitemdisc,2264,0 +whitemcd,2264,0 +stradmrecord,2264,0 +stradmdisk,2264,0 +stradmdisc,2264,0 +stradmcd,2264,0 +whmrecord,2264,0 +whmdisk,2264,0 +whmdisc,2264,0 +whmcd,2264,0 +whiterecord,2264,0 +whitedisk,2264,0 +whitedisc,2264,0 +whitecd,2264,0 +stradrecord,2264,0 +straddisk,2264,0 +stradcd,2264,0 +whrecord,2264,0 +whdisk,2264,0 +whdisc,2264,0 +whcd,2264,0 +record9,2264,0 +disk9,2264,0 +disc9,2264,0 +cd9,2264,0 +9record,2264,0 +9disk,2264,0 +9disc,2264,0 +9cd,2264,0 +warddisc,2265,0 +darkgreenmusicrecord,2265,0 +darkgreenmusicdisk,2265,0 +darkgreenmusicdisc,2265,0 +darkgreenmusiccd,2265,0 +dgreenmusicrecord,2265,0 +dgreenmusicdisk,2265,0 +dgreenmusicdisc,2265,0 +dgreenmusiccd,2265,0 +darkgrmusicrecord,2265,0 +darkgrmusicdisk,2265,0 +darkgrmusicdisc,2265,0 +darkgrmusiccd,2265,0 +wardmusicrecord,2265,0 +wardmusicdisk,2265,0 +wardmusicdisc,2265,0 +wardmusiccd,2265,0 +dgrmusicrecord,2265,0 +dgrmusicdisk,2265,0 +dgrmusicdisc,2265,0 +dgrmusiccd,2265,0 +darkgreenmrecord,2265,0 +darkgreenmdisk,2265,0 +darkgreenmdisc,2265,0 +darkgreenmcd,2265,0 +dgreenmrecord,2265,0 +dgreenmdisk,2265,0 +dgreenmdisc,2265,0 +dgreenmcd,2265,0 +darkgrmrecord,2265,0 +darkgrmdisk,2265,0 +darkgrmdisc,2265,0 +darkgrmcd,2265,0 +wardmrecord,2265,0 +wardmdisk,2265,0 +wardmdisc,2265,0 +wardmcd,2265,0 +dgrmrecord,2265,0 +dgrmdisk,2265,0 +dgrmdisc,2265,0 +dgrmcd,2265,0 +darkgreenrecord,2265,0 +darkgreendisk,2265,0 +darkgreendisc,2265,0 +darkgreencd,2265,0 +dgreenrecord,2265,0 +dgreendisk,2265,0 +dgreendisc,2265,0 +dgreencd,2265,0 +darkgrrecord,2265,0 +darkgrdisk,2265,0 +darkgrdisc,2265,0 +darkgrcd,2265,0 +wardrecord,2265,0 +warddisk,2265,0 +wardcd,2265,0 +dgrrecord,2265,0 +dgrdisk,2265,0 +dgrdisc,2265,0 +dgrcd,2265,0 +record10,2265,0 +disk10,2265,0 +disc10,2265,0 +cd10,2265,0 +10record,2265,0 +10disk,2265,0 +10disc,2265,0 +10cd,2265,0 +11disc,2266,0 +crackedmusicrecord,2266,0 +crackedmusicdisk,2266,0 +crackedmusicdisc,2266,0 +crackedmusiccd,2266,0 +crackmusicrecord,2266,0 +crackmusicdisk,2266,0 +crackmusicdisc,2266,0 +crackmusiccd,2266,0 +11musicrecord,2266,0 +11musicdisk,2266,0 +11musicdisc,2266,0 +11musiccd,2266,0 +cmusicrecord,2266,0 +cmusicdisk,2266,0 +cmusicdisc,2266,0 +cmusiccd,2266,0 +crackedmrecord,2266,0 +crackedmdisk,2266,0 +crackedmdisc,2266,0 +crackedmcd,2266,0 +crackmrecord,2266,0 +crackmdisk,2266,0 +crackmdisc,2266,0 +crackmcd,2266,0 +11mrecord,2266,0 +11mdisk,2266,0 +11mdisc,2266,0 +11mcd,2266,0 +cmrecord,2266,0 +cmdisk,2266,0 +cmdisc,2266,0 +cmcd,2266,0 +crackedrecord,2266,0 +crackeddisk,2266,0 +crackeddisc,2266,0 +crackedcd,2266,0 +crackrecord,2266,0 +crackdisk,2266,0 +crackdisc,2266,0 +crackcd,2266,0 +crecord,2266,0 +cdisk,2266,0 +cdisc,2266,0 +ccd,2266,0 +record11,2266,0 +disk11,2266,0 +disc11,2266,0 +cd11,2266,0 +11record,2266,0 +11disk,2266,0 +11cd,2266,0 +waitdisc,2267,0 +waitmusicrecord,2267,0 +waitmusicdisk,2267,0 +waitmusicdisc,2267,0 +waitmusiccd,2267,0 +bluemusicrecord,2267,0 +bluemusicdisk,2267,0 +bluemusicdisc,2267,0 +bluemusiccd,2267,0 +12musicrecord,2267,0 +12musicdisk,2267,0 +12musicdisc,2267,0 +12musiccd,2267,0 +cyanmusicrecord,2267,0 +cyanmusicdisk,2267,0 +cyanmusicdisc,2267,0 +cyanmusiccd,2267,0 +waitmrecord,2267,0 +waitmdisk,2267,0 +waitmdisc,2267,0 +waitmcd,2267,0 +bluemrecord,2267,0 +bluemdisk,2267,0 +bluemdisc,2267,0 +bluemcd,2267,0 +12mrecord,2267,0 +12mdisk,2267,0 +12mdisc,2267,0 +12mcd,2267,0 +cyanmrecord,2267,0 +cyanmdisk,2267,0 +cyanmdisc,2267,0 +cyanmcd,2267,0 +waitrecord,2267,0 +waitdisk,2267,0 +waitcd,2267,0 +bluerecord,2267,0 +bluedisk,2267,0 +bluedisc,2267,0 +bluecd,2267,0 +cyanrecord,2267,0 +cyandisk,2267,0 +cyandisc,2267,0 +cyancd,2267,0 +record12,2267,0 +disk12,2267,0 +disc12,2267,0 +cd12,2267,0 +12record,2267,0 +12disk,2267,0 +12disc,2267,0 +12cd,2267,0 + +#ba1a7d3c7de3ae3d2182ed5dc8e9ee2f \ No newline at end of file diff --git a/plugins/Essentials/motd.txt b/plugins/Essentials/motd.txt new file mode 100644 index 0000000..9dd5a40 --- /dev/null +++ b/plugins/Essentials/motd.txt @@ -0,0 +1,4 @@ +&6Welcome, {PLAYER}&6! +&6Type &c/help&6 for a list of commands. +&6Type &c/list&6 to see who else is online. +&6Players online:&c {ONLINE} &6- World time:&c {WORLDTIME12} \ No newline at end of file diff --git a/plugins/Essentials/upgrades-done.yml b/plugins/Essentials/upgrades-done.yml new file mode 100644 index 0000000..0a936a9 --- /dev/null +++ b/plugins/Essentials/upgrades-done.yml @@ -0,0 +1,11 @@ +updateSpawnsToNewSpawnsConfig: true +updateJailsToNewJailsConfig: true +warnMetrics: true +movemotdToFile: true +moverulesToFile: true +deleteOldItemsCsv: true +moveWorthValuesToWorthYml: true +sanitizeAllUserFilenames: true +updateUsersToNewDefaultHome: true +updateUsersPowerToolsFormat: true +updateUsersHomesFormat: true diff --git a/plugins/EssentialsAntiBuild.jar b/plugins/EssentialsAntiBuild.jar new file mode 100644 index 0000000..ee853ea Binary files /dev/null and b/plugins/EssentialsAntiBuild.jar differ diff --git a/plugins/EssentialsChat.jar b/plugins/EssentialsChat.jar new file mode 100644 index 0000000..94a9b81 Binary files /dev/null and b/plugins/EssentialsChat.jar differ diff --git a/plugins/EssentialsProtect.jar b/plugins/EssentialsProtect.jar new file mode 100644 index 0000000..cf6c0f9 Binary files /dev/null and b/plugins/EssentialsProtect.jar differ diff --git a/plugins/EssentialsSpawn.jar b/plugins/EssentialsSpawn.jar new file mode 100644 index 0000000..7b35d7a Binary files /dev/null and b/plugins/EssentialsSpawn.jar differ diff --git a/plugins/WorldEdit/config.yml b/plugins/WorldEdit/config.yml new file mode 100644 index 0000000..f4c7c29 --- /dev/null +++ b/plugins/WorldEdit/config.yml @@ -0,0 +1,72 @@ +# +# WorldEdit's configuration file +# +# About editing this file: +# - DO NOT USE TABS. You MUST use spaces or Bukkit will complain. If +# you use an editor like Notepad++ (recommended for Windows users), you +# must configure it to "replace tabs with spaces." In Notepad++, this can +# be changed in Settings > Preferences > Language Menu. +# - Don't get rid of the indents. They are indented so some entries are +# in categories (like "max-blocks-changed" is in the "limits" +# category. +# - If you want to check the format of this file before putting it +# into WorldEdit, paste it into http://yaml-online-parser.appspot.com/ +# and see if it gives "ERROR:". +# - Lines starting with # are commentsand so they are ignored. +# + +limits: + allow-extra-data-values: false + max-blocks-changed: + default: -1 + maximum: -1 + max-polygonal-points: + default: -1 + maximum: 20 + max-radius: -1 + max-super-pickaxe-size: 5 + max-brush-radius: 5 + butcher-radius: + default: -1 + maximum: -1 + disallowed-blocks: [6, 7, 14, 15, 16, 26, 27, 28, 29, 39, 31, 32, 33, 34, 36, 37, 38, 39, 40, 46, 50, 51, 56, 59, 69, 73, 74, 75, 76, 77, 81, 83] + +use-inventory: + enable: false + allow-override: true + creative-mode-overrides: false + +logging: + log-commands: false + file: worldedit.log + +super-pickaxe: + drop-items: true + many-drop-items: false + +snapshots: + directory: + +navigation-wand: + item: 345 + max-distance: 100 + +scripting: + timeout: 3000 + dir: craftscripts + +saving: + dir: schematics + +files: + allow-symbolic-links: false + +history: + size: 15 + expiration: 10 + +wand-item: 271 +shell-save-type: +no-double-slash: false +no-op-permissions: false +debug: false diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_145.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_145.class new file mode 100644 index 0000000..b8d6c51 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_145.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_146.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_146.class new file mode 100644 index 0000000..e89c4a7 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_146.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_147.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_147.class new file mode 100644 index 0000000..e3c8c20 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_147.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_15.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_15.class new file mode 100644 index 0000000..68781e1 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_15.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_152.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_152.class new file mode 100644 index 0000000..8dda57e Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_152.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_161.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_161.class new file mode 100644 index 0000000..336c611 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_161.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_162.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_162.class new file mode 100644 index 0000000..2d70cfb Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_162.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_164.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_164.class new file mode 100644 index 0000000..7520a85 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_164.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_prePackage.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_prePackage.class new file mode 100644 index 0000000..07a94b1 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_prePackage.class differ diff --git a/plugins/WorldEdit/nmsblocks/CBXNmsBlock_v152_2.class b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_v152_2.class new file mode 100644 index 0000000..2a4acd4 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/CBXNmsBlock_v152_2.class differ diff --git a/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_147.class b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_147.class new file mode 100644 index 0000000..86da91a Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_147.class differ diff --git a/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_151dv.class b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_151dv.class new file mode 100644 index 0000000..b68088e Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_151dv.class differ diff --git a/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_162.class b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_162.class new file mode 100644 index 0000000..7f13268 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_162.class differ diff --git a/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_164.class b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_164.class new file mode 100644 index 0000000..ac6c277 Binary files /dev/null and b/plugins/WorldEdit/nmsblocks/MCPCPlusXNmsBlock_164.class differ diff --git a/plugins/WorldEditCompat/config.yml b/plugins/WorldEditCompat/config.yml new file mode 100644 index 0000000..46b3002 --- /dev/null +++ b/plugins/WorldEditCompat/config.yml @@ -0,0 +1,20 @@ +# WorldEdit Forge Compatibility Config for MCPC+ 1.6.4 + +# Map WorldEdit Forge commands to Bukkit-style +commands: + wand: + forge-command: /wand + bukkit-alias: wand + + sel: + forge-command: //sel + bukkit-alias: sel + + pos1: + forge-command: //pos1 + bukkit-alias: pos1 + + pos2: + forge-command: //pos2 + bukkit-alias: pos2 + diff --git a/plugins/worldedit-5.6.jar b/plugins/worldedit-5.6.jar new file mode 100644 index 0000000..d89c798 Binary files /dev/null and b/plugins/worldedit-5.6.jar differ diff --git a/start-docker.sh b/start-docker.sh new file mode 100755 index 0000000..3da99f1 --- /dev/null +++ b/start-docker.sh @@ -0,0 +1,8 @@ +#!/bin/sh +cd "$(dirname "$0")" +exec docker run -it --rm \ + --ulimit nofile=65535:65535 \ + -p 25565:25565 \ + -v "$PWD":/server \ + anapsix/alpine-java:7 \ + sh -c 'cd /server && java -Xmx2G -Xms1G -XX:+UseG1GC -jar mcpc.jar nogui'